Merge pull request #14036 from eileenmcnaughton/5.13
[civicrm-core.git] / CRM / Utils / Array.php
index b95b9c4be30569f1fb3db01d8a2deb1bd6f2d6bd..4cda076ea3fc531a289cc4c3276f2fc99f029856 100644 (file)
@@ -1063,7 +1063,8 @@ class CRM_Utils_Array {
       (count($keys) == 1 &&
         (current($keys) > 1 ||
           is_string(current($keys)) ||
-          (current($keys) == 1 && $array[1] == 1) // handle (0 => 4), (1 => 1)
+          // handle (0 => 4), (1 => 1)
+          (current($keys) == 1 && $array[1] == 1)
         )
       )
     ) {