This happend when i try to ad a campaign it accept the add but it wont show in the list, and i get the message below in apache error_log
PHP Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /var/www/html/vicidial/admin.php on line 1616,
I am using mysql 5.0.22 php 5 vicidial 2.0.4
##### BEGIN get inbound groups listing for checkboxes #####
$xfer_groupsSQL='';
if ( (($ADD>20) and ($ADD<70)) and ($ADD!=41) )
{
$stmt="SELECT closer_campaigns,xfer_groups from vicidial_campaigns where campaign_id='$campaign_id';";
$rslt=mysql_query($stmt, $link);
$row=mysql_fetch_row($rslt); LINE 1616
$closer_campaigns = $row[0];
$closer_campaigns = preg_replace("/ -$/","",$closer_campaigns);
$groups = explode(" ", $closer_campaigns);
$xfer_groups = $row[1];