diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-15 15:16:07 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-15 15:16:07 +0000 |
commit | 71d39f1c4ca21bd25b9bda01451ae651cbbabb64 (patch) | |
tree | 93d67f848ed0bf60a26c57ca3c809985a8c55603 /views/default/output/url.php | |
parent | 5a6d2bf8e397792fdc557b658e5ab5caea5d9f29 (diff) | |
download | elgg-71d39f1c4ca21bd25b9bda01451ae651cbbabb64.tar.gz elgg-71d39f1c4ca21bd25b9bda01451ae651cbbabb64.tar.bz2 |
Tidied up output views
git-svn-id: https://code.elgg.org/elgg/trunk@463 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/output/url.php')
-rw-r--r-- | views/default/output/url.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/views/default/output/url.php b/views/default/output/url.php index 98fb610a1..b710bf512 100644 --- a/views/default/output/url.php +++ b/views/default/output/url.php @@ -1,5 +1,20 @@ <?php
+ /**
+ * Elgg URL display
+ * Displays a URL as a link
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ *
+ * @uses $vars['value'] The URL to display
+ *
+ */
+
$val = trim($vars['value']);
if (!empty($val)) {
if (substr_count($val, "http://") == 0) {
|