[Vtigercrm-commits] [vtiger-commits] r5408 - in /vtigercrm/trunk/modules/Invoice: DetailView.php EditView.php ListView.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Wed Apr 26 10:58:48 EDT 2006
Author: saraj
Date: Wed Apr 26 08:58:41 2006
New Revision: 5408
Log:
Added the Button Security Check for List/Edit/Detail View - Ahmed
Modified:
vtigercrm/trunk/modules/Invoice/DetailView.php
vtigercrm/trunk/modules/Invoice/EditView.php
vtigercrm/trunk/modules/Invoice/ListView.php
Modified: vtigercrm/trunk/modules/Invoice/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Invoice/DetailView.php (original)
+++ vtigercrm/trunk/modules/Invoice/DetailView.php Wed Apr 26 08:58:41 2006
@@ -78,6 +78,9 @@
//Get the associated Products and then display above Terms and Conditions
$smarty->assign("ASSOCIATED_PRODUCTS",getDetailAssociatedProducts('Invoice',$focus));
+$check_button = Button_Check($module);
+$smarty->assign("CHECK", $check_button);
+
$smarty->display("DetailView.tpl");
?>
Modified: vtigercrm/trunk/modules/Invoice/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Invoice/EditView.php (original)
+++ vtigercrm/trunk/modules/Invoice/EditView.php Wed Apr 26 08:58:41 2006
@@ -274,6 +274,9 @@
$smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$data['datatype']);
$smarty->assign("VALIDATION_DATA_FIELDLABEL",$data['fieldlabel']);
+$check_button = Button_Check($module);
+$smarty->assign("CHECK", $check_button);
+
if($focus->mode == 'edit')
$smarty->display("salesEditView.tpl");
else
Modified: vtigercrm/trunk/modules/Invoice/ListView.php
==============================================================================
--- vtigercrm/trunk/modules/Invoice/ListView.php (original)
+++ vtigercrm/trunk/modules/Invoice/ListView.php Wed Apr 26 08:58:41 2006
@@ -175,6 +175,8 @@
$smarty->assign("NAVIGATION", $navigationOutput);
$smarty->assign("RECORD_COUNTS", $record_string);
+$check_button = Button_Check($module);
+$smarty->assign("CHECK", $check_button);
if(isset($_REQUEST['ajax']) && $_REQUEST['ajax'] != '')
$smarty->display("ListViewEntries.tpl");
More information about the vtigercrm-commits
mailing list