0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Reports
/
[
Home
]
File: SaveReport0.php
<?php /********************************************************************************* ** The contents of this file are subject to the vtiger CRM Public License Version 1.0 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. * ********************************************************************************/ require_once('modules/Reports/Reports.php'); require_once('include/logging.php'); require_once('include/database/PearDatabase.php'); global $adb; $local_log =& LoggerManager::getLogger('index'); $primarymodule_req = $_REQUEST["primarymodule"]; $sec_module_name = $_REQUEST["primarymodule"]."relatedmodule"; if(isset($_REQUEST[$sec_module_name])) $secondarymodule_req = $_REQUEST[$sec_module_name]; if(count($secondarymodule_req)>0) { $secondarymodule_req = implode(":",$secondarymodule_req); } if(isset($_REQUEST['return_module']) && $_REQUEST['return_module'] != "") $return_module = $_REQUEST['return_module']; else $return_module = "Reports"; if(isset($_REQUEST['return_action']) && $_REQUEST['return_action'] != "") $return_action = $_REQUEST['return_action']; else $return_action = "index"; if($primarymodule_req!="") { header("Location: index.php?action=NewReport1&module=Reports&primarymodule=$primarymodule_req&secondarymodule=$secondarymodule_req"); } ?>