Changeset 4248 for trunk/licqweb
- Timestamp:
- 10/03/05 11:47:34 (3 years ago)
- Location:
- trunk/licqweb
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/licqweb/push.php
r4186 r4248 118 118 <response> 119 119 <method>$method</method> 120 <result> $txt</result>120 <result>" . kses($txt) . "</result> 121 121 </response> 122 122 "; -
trunk/licqweb/rms.php
r4247 r4248 123 123 // kses input filtering 124 124 $allowed = array('b' => array(), 125 'i' => array(),126 'a' => array('href' => 1, 'title' => 1),127 'p' => array('align' => 1),128 'br' => array(),125 'i' => array(), 126 'a' => array('href' => 1, 'title' => 1), 127 'p' => array('align' => 1), 128 'br' => array(), 129 129 'font' => array('size' => 1, 'color' => 1, 'face' => 1) 130 );130 ); 131 131 132 132 if (get_magic_quotes_gpc()) { … … 250 250 } 251 251 $nick = strrev($nick); 252 $nick = trim($nick);252 $nick = kses(trim($nick)); 253 253 254 254 // Now we have a user, lets build a list struct then display the list
