]> Kevux Git Server - quail-php/commitdiff
Apply patch for php-5.4 support
authorKevin Day <thekevinday@gmail.com>
Thu, 23 May 2019 22:02:02 +0000 (17:02 -0500)
committerKevin Day <thekevinday@gmail.com>
Thu, 23 May 2019 22:03:21 +0000 (17:03 -0500)
see: https://git.drupalcode.org/project/quail_api/blob/7.x-1.x/miscellaneous/quail-php_54-2.patch

quail/common/test.php

index 7157a020ff82043355aa07cf5a1ce1470756d77f..ded8dfc9d72eaa271b7d563221be95f044253d53 100644 (file)
@@ -200,8 +200,10 @@ class quailTest {
        function getAllElements($tags = null, $options = false, $value = true) {
                if(!is_array($tags))
                        $tags = array($tags);
-               if($options !== false)
-                       $tags = htmlElements::getElementsByOption($options, $value);
+               if($options !== false) {
+                        $htmlElements = new htmlElements();
+                       $tags = $htmlElements->getElementsByOption($options, $value);
+                }
                $result = array();
                
                if(!is_array($tags))