is_admin != 'on') { echo 'NOT_PERMITTED'; die; } else { $new_folderid = $_REQUEST['folderid']; $idlist = vtlib_purify($_REQUEST['idlist']); $excludedRecords=vtlib_purify($_REQUEST['excludedRecords']); if(isset($_REQUEST['idlist']) && $_REQUEST['idlist']!= '') { $id_array = Array(); $id_array = getSelectedRecords($_REQUEST,'Documents',$idlist,$excludedRecords);//explode(';',$_REQUEST['idlist']); $id_array = array_filter($id_array); for($i = 0;$i < count($id_array);$i++) { ChangeFolder($id_array[$i],$new_folderid); } header("Location: index.php?action=DocumentsAjax&file=ListView&mode=ajax&module=Documents"); } } /** To Change the Documents to another folder * @param $recordid -- The file id * @param $new_folderid -- The folderid to which the file to be moved * @returns nothing */ function ChangeFolder($recordid,$new_folderid) { global $adb; $sql="update vtiger_notes set folderid=".$new_folderid." where notesid in (".$recordid.")"; $res=$adb->pquery($sql,array()); } ?>