diff options
-rw-r--r-- | views/default/output/url.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/views/default/output/url.php b/views/default/output/url.php index 19ad331e1..c5058f18e 100644 --- a/views/default/output/url.php +++ b/views/default/output/url.php @@ -19,6 +19,9 @@ */ $url = trim($vars['href']); +if (!$url and isset($vars['value'])) { + $url = trim($vars['value']); +} if (!empty($url)) { if (array_key_exists('target', $vars) && $vars['target']) { |