Removed unused variable

This commit is contained in:
Rudi Grinberg 2012-09-12 16:24:49 -04:00
parent 15355f9e30
commit 88604eabcc
1 changed files with 1 additions and 1 deletions

View File

@ -811,7 +811,7 @@ SQL;
{
global $CC_CONFIG;
$sql = "DELETE FROM ".$CC_CONFIG["scheduleTable"]." WHERE file_id=:file_id";
$res = Application_Common_Database::prepareAndExecute($sql, array(':file_id'=>$fileId), 'execute');
Application_Common_Database::prepareAndExecute($sql, array(':file_id'=>$fileId), 'execute');
}
public static function createNewFormSections($p_view)