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/output | |
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/output')
-rw-r--r-- | views/default/output/url.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/output/url.php b/views/default/output/url.php index 274221a1b..31db9e928 100644 --- a/views/default/output/url.php +++ b/views/default/output/url.php @@ -43,5 +43,5 @@ if (!isset($body)) { } $vars['href'] = $url; -$attributes = html5_get_html_attributes($vars); +$attributes = elgg_format_attributes($vars); echo "<a $attributes>$body</a>"; |