From 5571ca5b350fd1735f13af7ddfbb88afa6befb0c Mon Sep 17 00:00:00 2001 From: brettp Date: Mon, 5 Apr 2010 15:11:05 +0000 Subject: Merged 5487:5525 from 1.7 to trunk. git-svn-id: http://code.elgg.org/elgg/trunk@5621 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/default/output/url.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'views/default') diff --git a/views/default/output/url.php b/views/default/output/url.php index 734df2c19..7e0281a43 100644 --- a/views/default/output/url.php +++ b/views/default/output/url.php @@ -20,6 +20,10 @@ $url = trim($vars['href']); if (!empty($url)) { + if ((substr_count($url, "http://") == 0) && (substr_count($url, "https://") == 0)) { + $url = "http://" . $url; + } + if (array_key_exists('is_action', $vars) && $vars['is_action']) { $url = elgg_add_action_tokens_to_url($url); } -- cgit v1.2.3