43 lines
1.6 KiB
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.
********************************************************************************/
global $current_user, $currentModule;
require_once("modules/$currentModule/$currentModule.php");
$focus = new $currentModule();
if($mode) $focus->mode = $mode;
if($record)$focus->id = $record;
setObjectValuesFromRequest($focus);
$mode = $_REQUEST['mode'];
$record=$_REQUEST['record'];
if($_REQUEST['assigntype'] == 'U') {
$focus->column_fields['assigned_user_id'] = $_REQUEST['assigned_user_id'];
} elseif($_REQUEST['assigntype'] == 'T') {
$focus->column_fields['assigned_user_id'] = $_REQUEST['assigned_group_id'];
}
$focus->save($currentModule);
$return_id = $focus->id;
$parenttab = getParentTab();
if($_REQUEST['return_module'] != '') $return_module = vtlib_purify($_REQUEST['return_module']);
else $return_module = $currentModule;
if($_REQUEST['return_action'] != '') $return_action = vtlib_purify($_REQUEST['return_action']);
else $return_action = "DetailView";
if($_REQUEST['return_id'] != '') $return_id = vtlib_purify($_REQUEST['return_id']);
header("Location: index.php?action=$return_action&module=$return_module&record=$return_id&parenttab=$parenttab&start=".vtlib_purify($_REQUEST['pagenumber']));
?>