CRM-12347, eliminate debug short circuit
authorDonald A. Lobo <lobo@civicrm.org>
Sat, 13 Apr 2013 18:42:48 +0000 (11:42 -0700)
committerDonald A. Lobo <lobo@civicrm.org>
Sat, 13 Apr 2013 18:42:48 +0000 (11:42 -0700)
----------------------------------------
* CRM-12347: Rebuild Smart Group Cache errors out if limit=50 configured in parameters
  http://issues.civicrm.org/jira/browse/CRM-12347

CRM/Utils/REST.php

index e67815b2278984b7cb3538c6d894ba028f85c684..a55ca67d66f1ccb6eb6e85e68c9f517d37c5abc6 100644 (file)
@@ -394,7 +394,7 @@ class CRM_Utils_REST {
       return $result;
     }
 
-    if ($_SERVER['REQUEST_METHOD'] == 'GET' && strtolower(substr( $args[2],0,3)) != 'get' && 0) {
+    if ($_SERVER['REQUEST_METHOD'] == 'GET' && strtolower(substr( $args[2],0,3)) != 'get') {
       // get only valid for non destructive methods
       require_once 'api/v3/utils.php';
       return civicrm_api3_create_error("SECURITY: All requests that modify the database must be http POST, not GET.",