[Vtigercrm-commits] [vtiger-commits] r9815 - in /vtigercrm/branches/4.2: config.template.php install/2setConfig.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Fri Nov 10 20:51:05 EST 2006


Author: allanbush
Date: Fri Nov 10 18:51:02 2006
New Revision: 9815

Log:
Removed $disable_persistent_connections config option as it was unused and a duplicate of $dbconfigoption['persistent'].  Closes #2551.

Modified:
    vtigercrm/branches/4.2/config.template.php
    vtigercrm/branches/4.2/install/2setConfig.php

Modified: vtigercrm/branches/4.2/config.template.php
==============================================================================
--- vtigercrm/branches/4.2/config.template.php (original)
+++ vtigercrm/branches/4.2/config.template.php Fri Nov 10 18:51:02 2006
@@ -156,10 +156,6 @@
 // default_user_is_admin default value = false
 $default_user_is_admin = false;
 
-// if your MySQL/PHP configuration does not support persistent connections set this to true to avoid a large performance slowdown
-// disable_persistent_connections default value = false
-$disable_persistent_connections = false;
-
 // defined languages available. the key must be the language file prefix. (Example 'en_us' is the prefix for every 'en_us.lang.php' file)
 // languages default value = en_us=>US English
 $languages = Array('en_us'=>'US English',);

Modified: vtigercrm/branches/4.2/install/2setConfig.php
==============================================================================
--- vtigercrm/branches/4.2/install/2setConfig.php (original)
+++ vtigercrm/branches/4.2/install/2setConfig.php Fri Nov 10 18:51:02 2006
@@ -48,9 +48,6 @@
 
   if(isset($allow_exports))
     $_SESSION['allow_exports'] = $allow_exports;
-
-  if(isset($disable_persistent_connections))
-    $_SESSION['disable_persistent_connections'] = $disable_persistent_connections;
 
   if(isset($default_language))
     $_SESSION['default_language'] = $default_language;





More information about the vtigercrm-commits mailing list