PHP Code:
$dbstring="";
$i = 0;
foreach($ibforums->input['users'] as $value)
{
$user = intval($value);
if($user == 0)
{
$return .= $main->html->error($ibforums->lang['id_greater_zero']);
return $return;
}
$dbstring .= ($i) ? ", ".$user : $user;
$i++;
}
this is the string i found and line 717 is
PHP Code:
foreach($ibforums->input['users'] as $value)
im not sure what the error is
----------------------------------------------
wait i think i figured a work around.
above this there is a code like this
PHP Code:
/*
if( $ibforums->input['users'] == "" )
{
$ibforums->input['users'] = array();
}
*/
if you take out the /* and */ in the begining and end it will take you back to the modcp and not give you an error
why was that blocked out? should i have done that?