Changeset 4245 for trunk/licqweb
- Timestamp:
- 10/01/05 16:14:50 (3 years ago)
- Location:
- trunk/licqweb
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/licqweb/CHANGELOG
r4244 r4245 5 5 - sent messages with return characters get displayed properly 6 6 - added aim icons 7 - html tags that aren't allowed are now shown as plain text (instead of removing the whole tag + text) -
trunk/licqweb/kses.php
r4186 r4245 106 106 $attrlist = $matches[3]; 107 107 108 if (!@isset($allowed_html[strtolower($elem)])) 109 return ''; 108 if (!@isset($allowed_html[strtolower($elem)])) { 109 $string = str_replace(array('<', '>'), array('<', '>'), $string); 110 return $string; 110 111 # They are using a not allowed HTML element 112 } 111 113 112 114 if ($slash != '') -
trunk/licqweb/TODO
r4244 r4245 2 2 * fix plaintext passwords 3 3 * fix invisible status images 4 * html tags in user nicks + messages (should show unallowed html as plain text)5 4 * messages from offline users 6 5 * focus issues
