summaryrefslogtreecommitdiffstats
path: root/contrib/rom-o-matic/customize-flags.php
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/rom-o-matic/customize-flags.php')
-rw-r--r--contrib/rom-o-matic/customize-flags.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/rom-o-matic/customize-flags.php b/contrib/rom-o-matic/customize-flags.php
index 23090439..e283921a 100644
--- a/contrib/rom-o-matic/customize-flags.php
+++ b/contrib/rom-o-matic/customize-flags.php
@@ -34,30 +34,30 @@ include_once $top_inc;
?>
<form action="build.php" method=POST>
- <input type="hidden" name="version" value = "<? echo $version ?>">
+ <input type="hidden" name="version" value = "<?php echo $version ?>">
<input type="hidden" name="use_flags" value="1">
<h3>
- Make changes below and press <? echo $build ?> to create an image, <br>
- Or press <? echo $restart ?> to return to the main page.
+ Make changes below and press <?php echo $build ?> to create an image, <br>
+ Or press <?php echo $restart ?> to return to the main page.
</h3>
<hr>
<ul>
- <? require ( "directions.php" ); ?>
+ <?php require ( "directions.php" ); ?>
</ul>
<hr>
- <? echo_flags( $flags ); ?>
+ <?php echo_flags( $flags ); ?>
<hr>
<h3>Embedded Script:</h3>
- <? echo textarea ( "embedded_script", "", "10", "50" ); ?>
+ <?php echo textarea ( "embedded_script", "", "10", "50" ); ?>
<br><br>
<hr>
<center><table width="35%"><tr>
- <td align="left"> <? echo $build; ?> </td>
- <td align="right"> <? echo $restart ?></td>
+ <td align="left"> <?php echo $build; ?> </td>
+ <td align="right"> <?php echo $restart ?></td>
</tr></table></center>
</form>
-<? include_once $bottom_inc; ?>
+<?php include_once $bottom_inc; ?>
<?
// For emacs:
//