Fix is_element_empty util function.

This commit is contained in:
BastianHofmann
2014-06-17 16:03:20 +02:00
parent a766ea166a
commit 6ddbd6e9de

View File

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