Fix is_element_empty

This commit is contained in:
Scott Walkinshaw
2014-06-17 21:34:04 -04:00
parent eff8b55bb4
commit d951c1814d

View File

@@ -10,5 +10,5 @@ function add_filters($tags, $function) {
function is_element_empty($element) {
$element = trim($element);
return empty($element);
return !empty($element);
}