diff options
author | Evan Winslow <evan.b.winslow@gmail.com> | 2010-10-21 20:18:21 +0000 |
---|---|---|
committer | Evan Winslow <evan.b.winslow@gmail.com> | 2010-10-21 20:18:21 +0000 |
commit | 37656237fc4f82015641fcb179f17c3b7194ae22 (patch) | |
tree | 2edc03cc5736a7fa1445c7c73c79eb705a957711 | |
parent | 37a8c770bea778b047f2b2a864dae1682ac6c311 (diff) | |
download | elgg-37656237fc4f82015641fcb179f17c3b7194ae22.tar.gz elgg-37656237fc4f82015641fcb179f17c3b7194ae22.tar.bz2 |
Fixed problem with output/url
-rw-r--r-- | views/default/output/url.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/output/url.php b/views/default/output/url.php index f497a093d..274221a1b 100644 --- a/views/default/output/url.php +++ b/views/default/output/url.php @@ -8,7 +8,7 @@ * @author Curverider Ltd * @link http://elgg.org/ * - * @uses string $vars['href'] The string to display in the <a></a> tags + * @uses string $vars['body'] The html to insert between the <a></a> tags * @uses string $vars['text'] The string between the <a></a> tags. * @uses bool $vars['is_action'] Is this a link to an action? * @@ -44,4 +44,4 @@ if (!isset($body)) { $vars['href'] = $url; $attributes = html5_get_html_attributes($vars); -echo "<a $attributes>$text</a>"; +echo "<a $attributes>$body</a>"; |