[Vtigercrm-commits] [vtiger-commits] r11168 - /vtigercrm/branches/5.0.3/modules/Migration/DBChanges/503rc2_to_503.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Thu May 31 04:39:47 EDT 2007


Author: richie
Date: Thu May 31 02:39:42 2007
New Revision: 11168

Log:
* Fixed the issue in calendar security because of public access in def_org_share table permission

Modified:
    vtigercrm/branches/5.0.3/modules/Migration/DBChanges/503rc2_to_503.php

Modified: vtigercrm/branches/5.0.3/modules/Migration/DBChanges/503rc2_to_503.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Migration/DBChanges/503rc2_to_503.php (original)
+++ vtigercrm/branches/5.0.3/modules/Migration/DBChanges/503rc2_to_503.php Thu May 31 02:39:42 2007
@@ -745,6 +745,12 @@
 //cvstdfilter table is in MyISAM engine so that the order of diplay will not be same in all time
 $adb->query("alter table vtiger_cvstdfilter engine=InnoDB");
 
+//we have to set set permission as 3 in vtiger_def_org_share as the Calendar is private
+ExecuteQuery("update vtiger_def_org_share set permission=3 where tabid=16");
+
+
+
+
 
 $migrationlog->debug("\n\nDB Changes from 5.0.3RC2 to 5.0.3 -------- Ends \n\n");
 





More information about the vtigercrm-commits mailing list