Changeset 1629 for trunk/gregarius/admin/channels.php
- Timestamp:
- 11/07/06 14:23:57 (2 years ago)
- Files:
-
- 1 modified
-
trunk/gregarius/admin/channels.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/gregarius/admin/channels.php
r1602 r1629 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";
