Don't use <?= tag because it's not recognized in some PHP configurations
authorsoranzo <soranzo>
Mon, 1 Aug 2005 15:40:15 +0000 (15:40 +0000)
committersoranzo <soranzo>
Mon, 1 Aug 2005 15:40:15 +0000 (15:40 +0000)
login.php

index c196dc66314cacd848959743ab3c3d27e20b6d0c..0c7019ffb2722217b3849c6235d8e05ab78c4b16 100755 (executable)
--- a/login.php
+++ b/login.php
@@ -3,7 +3,7 @@
        /**
         * Login screen
         *
-        * $Id: login.php,v 1.28 2005/07/31 08:40:26 chriskl Exp $
+        * $Id: login.php,v 1.29 2005/08/01 15:40:15 soranzo Exp $
         */
 
        // This needs to be an include once to prevent lib.inc.php infinite recursive includes.
@@ -44,7 +44,7 @@
    <td><input type="password" name="loginPassword" size="24" /></td>
   </tr>
  </table>
- <p><input type="checkbox" name="sharePassword" <?= isset($_POST['sharePassword']) ? 'checked="checked"' : '' ?> /><?= $lang['strtrycred'] ?></p>
+ <p><input type="checkbox" name="sharePassword" <?php echo isset($_POST['sharePassword']) ? 'checked="checked"' : '' ?> /><?php echo $lang['strtrycred'] ?></p>
  <p><input type="submit" name="loginSubmit" value="<?php echo $lang['strlogin']; ?>" /></p>
 </form>