see: https://git.drupalcode.org/project/quail_api/blob/7.x-1.x/miscellaneous/quail-php_54-2.patch
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))