summaryrefslogtreecommitdiffstats
path: root/contrib/rom-o-matic/index.php
diff options
context:
space:
mode:
authorPaul Sands2012-02-12 14:35:43 +0100
committerMichael Brown2012-02-12 14:35:43 +0100
commit4108321bf539768ce2175e92ac1e1687b667b109 (patch)
tree42944d9a15261e0621df5b9e73330f2df1e34397 /contrib/rom-o-matic/index.php
parent[prefix] Fix missing underscore in libprefix (diff)
downloadipxe-4108321bf539768ce2175e92ac1e1687b667b109.tar.gz
ipxe-4108321bf539768ce2175e92ac1e1687b667b109.tar.xz
ipxe-4108321bf539768ce2175e92ac1e1687b667b109.zip
[contrib] Fix rom-o-matic
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'contrib/rom-o-matic/index.php')
-rw-r--r--contrib/rom-o-matic/index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/rom-o-matic/index.php b/contrib/rom-o-matic/index.php
index 12b7e1a8..26585c97 100644
--- a/contrib/rom-o-matic/index.php
+++ b/contrib/rom-o-matic/index.php
@@ -27,10 +27,10 @@ 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 ?>">
<h3>To create an image:</h3>
<ol>
- <? require ( "directions.php" ); ?>
+ <?php require ( "directions.php" ); ?>
<li>
Generate and download an image:
<input type="submit" name="A" value="Get Image">
@@ -44,4 +44,4 @@ include_once $top_inc;
</ol>
</form>
-<? include_once $bottom_inc ?>
+<?php include_once $bottom_inc ?>