diff options
| author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-11 12:00:35 +0000 | 
|---|---|---|
| committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-11 12:00:35 +0000 | 
| commit | 37881edcff91abd6426b72efaf07c73bd8f80bb1 (patch) | |
| tree | f1ff5a4ecad7c624d6eeff7834763f07a099192e /engine/lib | |
| parent | 32cbcdfab7d677e54941ed2058cd34992d6529d2 (diff) | |
| download | elgg-37881edcff91abd6426b72efaf07c73bd8f80bb1.tar.gz elgg-37881edcff91abd6426b72efaf07c73bd8f80bb1.tar.bz2  | |
Fixes #3327 fixed typo
git-svn-id: http://code.elgg.org/elgg/trunk@8982 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
| -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 8c2a3d50d..3f35a1576 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($var))) { +		if (is_not_null($val) && (is_array($val) || !is_object($val))) {  			// allow $vars['class'] => array('one', 'two');  			// @todo what about $vars['style']? Needs to be semi-colon separated...  | 
