diff options
author | Evan Winslow <evan@elgg.org> | 2011-03-18 21:28:05 -0700 |
---|---|---|
committer | Evan Winslow <evan@elgg.org> | 2011-03-18 21:28:05 -0700 |
commit | dff32c364b99e57db5ea891ce93f7ab5df9b3258 (patch) | |
tree | ff0cd57619974d1ed9e8c9327434cebba9c7a1f6 /views/default/html | |
parent | e45dc237367658ed750701d1055e975eaef63f19 (diff) | |
download | elgg-dff32c364b99e57db5ea891ce93f7ab5df9b3258.tar.gz elgg-dff32c364b99e57db5ea891ce93f7ab5df9b3258.tar.bz2 |
Removed custom html5 function in favor of core function
Diffstat (limited to 'views/default/html')
-rw-r--r-- | views/default/html/img.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/html/img.php b/views/default/html/img.php index 734e59a55..10fcbe0d1 100644 --- a/views/default/html/img.php +++ b/views/default/html/img.php @@ -6,6 +6,6 @@ $defaults = array( 'border' => 0, ); -$attributes = html5_get_html_attributes(array_merge($defaults, $vars)); +$attributes = elgg_format_attributes(array_merge($defaults, $vars)); echo "<img $attributes />";
\ No newline at end of file |