Changeset 1639 for branches/multiuser/admin
- Timestamp:
- 11/24/06 16:23:35 (2 years ago)
- Files:
-
- 1 modified
-
branches/multiuser/admin/channels.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/multiuser/admin/channels.php
r1606 r1639 281 281 282 282 if ($label != 'http://' && substr($label, 0,4) == "http") { 283 $tags = $_REQUEST['channel_tags'];283 $tags = @$_REQUEST['channel_tags']; 284 284 $ret = add_channel($label,$fid,null,null,$tags); 285 285 //var_dump($ret); … … 900 900 901 901 // Description 902 $descr = strip_tags($descr);902 $descr = trim(strip_tags($descr)); 903 903 echo "<p><label for=\"c_descr\">". __('Description:') ."</label>\n" 904 904 ."<input type=\"text\" id=\"c_descr\" name=\"c_descr\" value=\"$descr\" /></p>\n";
