[Vtigercrm-commits] [vtiger-commits] r7211 - in /vtigercrm/trunk/modules: SalesOrder/CallRelatedList.php Vendors/CallRelatedList.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Sat Jun 17 03:26:27 EDT 2006
Author: saraj
Date: Sat Jun 17 01:26:21 2006
New Revision: 7211
Log:
changes made to fix the issue 1040
Modified:
vtigercrm/trunk/modules/SalesOrder/CallRelatedList.php
vtigercrm/trunk/modules/Vendors/CallRelatedList.php
Modified: vtigercrm/trunk/modules/SalesOrder/CallRelatedList.php
==============================================================================
--- vtigercrm/trunk/modules/SalesOrder/CallRelatedList.php (original)
+++ vtigercrm/trunk/modules/SalesOrder/CallRelatedList.php Sat Jun 17 01:26:21 2006
@@ -31,6 +31,9 @@
$smarty = new vtigerCRM_Smarty;
+if(isset($_REQUEST['mode']) && $_REQUEST['mode'] != ' ') {
+ $smarty->assign("OP_MODE",$_REQUEST['mode']);
+}
if (isset($focus->name)) $smarty->assign("NAME", $focus->name);
$related_array=getRelatedLists($currentModule,$focus);
$smarty->assign("RELATEDLISTS", $related_array);
Modified: vtigercrm/trunk/modules/Vendors/CallRelatedList.php
==============================================================================
--- vtigercrm/trunk/modules/Vendors/CallRelatedList.php (original)
+++ vtigercrm/trunk/modules/Vendors/CallRelatedList.php Sat Jun 17 01:26:21 2006
@@ -45,6 +45,9 @@
$category = getParentTab();
$smarty->assign("CATEGORY",$category);
+if(isset($_REQUEST['mode']) && $_REQUEST['mode'] != ' ') {
+ $smarty->assign("OP_MODE",$_REQUEST['mode']);
+}
if(isset($focus->name))
$smarty->assign("UPDATEINFO",updateInfo($focus->id));
$smarty->assign("NAME", $focus->name);
More information about the vtigercrm-commits
mailing list