[Vtigercrm-commits] [vtiger-commits] r5429 - in /vtigercrm/trunk/modules/Quotes: DetailView.php EditView.php ListView.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Thu Apr 27 01:03:09 EDT 2006


Author: saraj
Date: Wed Apr 26 23:03:04 2006
New Revision: 5429

Log:
Added security check for buttons in List/Edit/Detail View - Ahmed

Modified:
    vtigercrm/trunk/modules/Quotes/DetailView.php
    vtigercrm/trunk/modules/Quotes/EditView.php
    vtigercrm/trunk/modules/Quotes/ListView.php

Modified: vtigercrm/trunk/modules/Quotes/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/DetailView.php (original)
+++ vtigercrm/trunk/modules/Quotes/DetailView.php Wed Apr 26 23:03:04 2006
@@ -88,6 +88,8 @@
 //Get the associated Products and then display above Terms and Conditions
 $smarty->assign("ASSOCIATED_PRODUCTS",getDetailAssociatedProducts('Quotes',$focus));
 
+$check_button = Button_Check($module);
+$smarty->assign("CHECK", $check_button);
 $smarty->display("DetailView.tpl");
 
 ?>

Modified: vtigercrm/trunk/modules/Quotes/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/EditView.php (original)
+++ vtigercrm/trunk/modules/Quotes/EditView.php Wed Apr 26 23:03:04 2006
@@ -230,6 +230,8 @@
 
 $smarty->assign("MODULE", $module);
 
+$check_button = Button_Check($module);
+$smarty->assign("CHECK", $check_button);
 if($focus->mode == 'edit')
 $smarty->display("salesEditView.tpl");
 else

Modified: vtigercrm/trunk/modules/Quotes/ListView.php
==============================================================================
--- vtigercrm/trunk/modules/Quotes/ListView.php (original)
+++ vtigercrm/trunk/modules/Quotes/ListView.php Wed Apr 26 23:03:04 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");
 else	





More information about the vtigercrm-commits mailing list