trunk- fixed small bug in vtiger status flag updates

git-svn-id: svn://192.168.202.10@1087 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2009-03-27 18:32:49 +00:00
parent c536a753aa
commit 57675f60f5
+3 -3
View File
@@ -3365,7 +3365,7 @@ if ($ACTION == 'updateDISPO')
while ($i < $dncvcs_ct)
{
$row=mysql_fetch_row($rslt);
$DNC_string_check .= "$row[0]";
$DNC_string_check .= "$row[0]|";
$i++;
}
@@ -3682,7 +3682,7 @@ if ($ACTION == 'updateDISPO')
while ($i < $salevcs_ct)
{
$row=mysql_fetch_row($rslt);
$SALE_string_check .= "$row[0]";
$SALE_string_check .= "$row[0]|";
$i++;
}
@@ -3709,7 +3709,7 @@ if ($ACTION == 'updateDISPO')
while ($i < $cc_vcs_ct)
{
$row=mysql_fetch_row($rslt);
$CC_string_check .= "$row[0]";
$CC_string_check .= "$row[0]|";
$i++;
}