From d951c1814d8624773b59e21fe02ae10e54c0b379 Mon Sep 17 00:00:00 2001 From: Scott Walkinshaw Date: Tue, 17 Jun 2014 21:34:04 -0400 Subject: [PATCH] Fix is_element_empty --- lib/utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.php b/lib/utils.php index 955d8e8..89706d3 100644 --- a/lib/utils.php +++ b/lib/utils.php @@ -10,5 +10,5 @@ function add_filters($tags, $function) { function is_element_empty($element) { $element = trim($element); - return empty($element); + return !empty($element); }