Archived
1
0

Use autocomplete=off, thanks to sbauer

This commit is contained in:
Garvin Hicking
2008-11-24 15:40:48 +00:00
parent 4397e104d4
commit 1b966cceb2
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -3,6 +3,10 @@
Version 1.4 ()
------------------------------------------------------------------------
* Made entrypropertie's password plugin form use "autocomplete=off"
to prevent inserting badly stored passwords. Thanks to sbauer!
[1.4-beta1]
* Added full plugin name and links to documentation/changelog for
plugins on installation and configuration [1.4-beta1]:
@@ -313,7 +313,7 @@ class serendipity_event_entryproperties extends serendipity_event
?>
<br /><?php echo PASSWORD; ?>:<br />
<div style="margin-left: 10px" class="entryproperties_access_pw">
<input class="input_textbox" type="password" name="serendipity[properties][entrypassword]" value="<?php echo htmlspecialchars($password); ?>" />
<input autocomplete="off" class="input_textbox" type="password" name="serendipity[properties][entrypassword]" value="<?php echo htmlspecialchars($password); ?>" />
</div>
<?php
return true;