Show
Ignore:
Timestamp:
11/24/06 16:23:35 (2 years ago)
Author:
mdodoo
Message:

Attempted sync with trunk through "diff -r." Ignored the internationalized langugage files because i was afraid of messing something up.

It is 10:30 am. I should get some sleep.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/multiuser/admin/channels.php

    r1606 r1639  
    281281 
    282282        if ($label != 'http://' &&  substr($label, 0,4) == "http") { 
    283             $tags = $_REQUEST['channel_tags']; 
     283            $tags = @$_REQUEST['channel_tags']; 
    284284            $ret = add_channel($label,$fid,null,null,$tags); 
    285285            //var_dump($ret); 
     
    900900 
    901901    // Description 
    902     $descr = strip_tags($descr); 
     902    $descr = trim(strip_tags($descr)); 
    903903    echo "<p><label for=\"c_descr\">". __('Description:') ."</label>\n" 
    904904    ."<input type=\"text\" id=\"c_descr\" name=\"c_descr\" value=\"$descr\" /></p>\n";