diff options
| -rw-r--r-- | engine/lib/output.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engine/lib/output.php b/engine/lib/output.php index 3f35a1576..04c737062 100644 --- a/engine/lib/output.php +++ b/engine/lib/output.php @@ -170,7 +170,7 @@ function elgg_format_attributes(array $attrs) {  		}  		// ignore $vars['entity'] => ElggEntity stuff -		if (is_not_null($val) && (is_array($val) || !is_object($val))) { +		if ($val !== NULL && $val !== false && (is_array($val) || !is_object($val))) {  			// allow $vars['class'] => array('one', 'two');  			// @todo what about $vars['style']? Needs to be semi-colon separated... | 
