Changeset 205 for trunk/phpbms/modules/base/users_addedit.php
- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/modules/base/users_addedit.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/users_addedit.php
r204 r205 57 57 </head> 58 58 <body><?php include("../../menu.php")?> 59 <form action="<?php echo $_SERVER["REQUEST_URI"] ?>" method="post" name="record" on Submit="return submitForm(this);"><div id="dontSubmit"><input type="submit" value=" " onClick="return false;" /></div>59 <form action="<?php echo $_SERVER["REQUEST_URI"] ?>" method="post" name="record" onsubmit="return submitForm(this);"><div id="dontSubmit"><input type="submit" value=" " onclick="return false;" /></div> 60 60 <div class="bodyline"> 61 61 <div id="topButtons"><?php showSaveCancel(1); ?></div> … … 67 67 <p> 68 68 <label for="id">id</label><br /> 69 <input name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly=" true" class="uneditable"/>69 <input name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="readonly" class="uneditable"/> 70 70 </p> 71 71 … … 106 106 <p> 107 107 <label for="lastlogin" >last log in</label><br /> 108 <input id="lastlogin" name="lastlogin" type="text" value="<?php echo formatFromSQLDate($therecord["lastlogin"]); ?>" size="32" maxlength="64" readonly=" true" class="uneditable" />108 <input id="lastlogin" name="lastlogin" type="text" value="<?php echo formatFromSQLDate($therecord["lastlogin"]); ?>" size="32" maxlength="64" readonly="readonly" class="uneditable" /> 109 109 </p> 110 110