Changeset 8 for types/Password.php
- Timestamp:
- Sep 29, 2008, 2:35:42 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
types/Password.php
r5 r8 3 3 function TypePasswordViewHtml($Type, $Parameter, $Table, $Id) 4 4 { 5 $Output = '%value%'; 5 $Output = ''; 6 for($I = 0; $I < strlen($Item['Value']); $I++) 7 $Output .= '*'; 6 8 return($Output); 7 9 } … … 9 11 function TypePasswordEditHtml($Type, $Parameter, $Table, $Id) 10 12 { 11 $Output = '<input type="password" name=" %name%" value="%value%">';13 $Output = '<input type="password" name="'.$Item['Name'].'" value="'.$Item['Value'].'">'; 12 14 return($Output); 13 15 }
Note:
See TracChangeset
for help on using the changeset viewer.