diff options
author | spocky <spocky@ampache> | 2007-09-24 19:49:38 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-09-24 19:49:38 +0000 |
commit | 0dce31de404c46555b0c0d9c58297b506e50e4f8 (patch) | |
tree | 803d317fff41537473c0d1ae77d971ab82df3f67 /modules | |
parent | a3d16d1cd6ec1b2fbba373177468a91a6ab49c99 (diff) | |
download | ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.tar.gz ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.tar.bz2 ampache-0dce31de404c46555b0c0d9c58297b506e50e4f8.zip |
- Cleaned up php files (removed useless inlines styles, replaced header td with th...)
- Cleaned up css (removed some unused classes)
- Changed quick search size and added ability to customize it
- Removed width=100% in preferences tables
- Corrected missing closing tag in sidebar
- Minor corrections
Diffstat (limited to 'modules')
-rw-r--r-- | modules/captcha/captcha.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/captcha/captcha.php b/modules/captcha/captcha.php index 9f6c0a06..63df46c9 100644 --- a/modules/captcha/captcha.php +++ b/modules/captcha/captcha.php @@ -53,7 +53,7 @@ class captcha { $alt = htmlentities(captcha::textual_riddle($pw)); $test = substr($img,22); $html = - '<table border="0" summary="captcha input"><tr>' + '<table summary="captcha input"><tr>' . '<td><img name="captcha_image" id="captcha_image" src="'.$img. '" height="60" width="200" alt="'.$alt. '" /></td>' . '<td>'.$title. '<br/><input name="captcha_hash" type="hidden" value="'.$hash. '" />' . '<font color="red">*</font><input name="captcha_input" type="text" size="7" maxlength="16" style="height:23px; font-size:16px; font-weight:450;" />' |