Merge pull request #23704 from eileenmcnaughton/try
[civicrm-core.git] / CRM / Member / Import / Controller.php
index 2a57c0a38190c1f638e8d9e3f707df817086f98c..b647e940e5657c8ef1a77c13b0e4e61474283c93 100644 (file)
@@ -26,10 +26,7 @@ class CRM_Member_Import_Controller extends CRM_Core_Controller {
   public function __construct($title = NULL, $action = CRM_Core_Action::NONE, $modal = TRUE) {
     parent::__construct($title, $modal);
 
-    // lets get around the time limit issue if possible, CRM-2113
-    if (!ini_get('safe_mode')) {
-      set_time_limit(0);
-    }
+    set_time_limit(0);
 
     $this->_stateMachine = new CRM_Import_StateMachine($this, $action);