aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/details.php
diff options
context:
space:
mode:
authorSteve Clay <steve@mrclay.org>2013-03-21 10:48:20 -0400
committerSteve Clay <steve@mrclay.org>2013-03-21 10:48:20 -0400
commit33015121e7ec691372a56be0c5ef03d24d9c3aac (patch)
tree843f13b4d401fe139e879ce0e47e3f9940c8d591 /mod/profile/views/default/profile/details.php
parent4da579033674ecdb134bc921f3f0666072419e6c (diff)
downloadelgg-33015121e7ec691372a56be0c5ef03d24d9c3aac.tar.gz
elgg-33015121e7ec691372a56be0c5ef03d24d9c3aac.tar.bz2
Auto-fixes profile URLs broken by #5232
Diffstat (limited to 'mod/profile/views/default/profile/details.php')
-rw-r--r--mod/profile/views/default/profile/details.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/mod/profile/views/default/profile/details.php b/mod/profile/views/default/profile/details.php
index 15df6c2fd..da4e95690 100644
--- a/mod/profile/views/default/profile/details.php
+++ b/mod/profile/views/default/profile/details.php
@@ -23,6 +23,14 @@ if (is_array($profile_fields) && sizeof($profile_fields) > 0) {
$value = $user->$shortname;
if (!empty($value)) {
+
+ // fix profile URLs populated by https://github.com/Elgg/Elgg/issues/5232
+ // @todo Replace with upgrade script, only need to alter users with last_update after 1.8.13
+ if ($valtype == 'url' && $value == 'http://') {
+ $user->$shortname = '';
+ continue;
+ }
+
// validate urls
if ($valtype == 'url' && !preg_match('~^https?\://~i', $value)) {
$value = "http://$value";