[Vtigercrm-developers] [vtiger-commits] r3875 - /vtigercrm/branches/4.2/include/database/PearDatabase.php
vtiger-commits at vtiger.fosslabs.com
vtiger-commits at vtiger.fosslabs.com
Tue Feb 21 17:45:03 PST 2006
Author: allanbush
Date: Tue Feb 21 18:44:59 2006
New Revision: 3875
Log:
removed magic quotes check on input sanitization as magic quotes are removed on all input in the index.php file
Modified:
vtigercrm/branches/4.2/include/database/PearDatabase.php
Modified: vtigercrm/branches/4.2/include/database/PearDatabase.php
==============================================================================
--- vtigercrm/branches/4.2/include/database/PearDatabase.php (original)
+++ vtigercrm/branches/4.2/include/database/PearDatabase.php Tue Feb 21 18:44:59 2006
@@ -747,7 +747,7 @@
function quote($string){
- return ADOConnection::qstr($string,get_magic_quotes_gpc());
+ return ADOConnection::qstr($string);
}
More information about the vtigercrm-developers
mailing list