r1511: Don't use PHP short tags because not everybody has them enabled.
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 19 Mar 2007 05:50:24 +0000 (05:50 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 19 Mar 2007 05:50:24 +0000 (05:50 +0000)
docs/mailtest.php
install/install.php

index fae9dc3292cf31be74ab483a2d0ee1f93b85d23e..7a92716c4f08d6c9aa3bcd90159cbc40496b88d6 100644 (file)
@@ -113,10 +113,10 @@ Sendmail (Path): \"" . ini_get('sendmail_path') . "\"";
 
 <h2>Variables</h2>
 <p>
-       <div>PHP: <?= phpversion() ?></div>
+       <div>PHP: <?php echo phpversion(); ?></div>
        <div>Mail Test: $Revision$</div>
-       <div>Sendmail (From): "<?= ini_get('sendmail_from') ?>"</div>
-       <div>Sendmail (Path): "<?= ini_get('sendmail_path') ?>"</div>
+       <div>Sendmail (From): "<?php echo ini_get('sendmail_from'); ?>"</div>
+       <div>Sendmail (Path): "<?php echo ini_get('sendmail_path'); ?>"</div>
 </p>
 
 </body>
index 3a2e6cdd20631b00432eeb8ce0debe9ea35752b6..91f21961556428cebe3a208600eb573bf0509a9d 100644 (file)
@@ -130,7 +130,7 @@ if ($bugsys->in['mark'] == 4)
 <input type="hidden" name="mark" value="5" />
 
 <div><strong>Tracker Name (the name of the entire tracking system, for instance "Acme Inc. Bug Tracker"):</strong> <input type="text" name="trackertitle" size="50" /></div>
-<div><strong>Tracker URL (the root URL of your tracker, we have tried to guess this for you; <em>it does not end with a trailing slash!</em>):</strong> <input type="text" name="trackerurl" size="50" value="<?= $value ?>" /></div>
+<div><strong>Tracker URL (the root URL of your tracker, we have tried to guess this for you; <em>it does not end with a trailing slash!</em>):</strong> <input type="text" name="trackerurl" size="50" value="<?php echo $value; ?>" /></div>
 <div><strong>Webmaster Email:</strong> <input type="text" name="webmasteremail" size="50" /></div>
 
 <input type="submit" name="submit" value="Next Step" />