diff options
author | Steve Clay <steve@mrclay.org> | 2013-03-21 10:48:20 -0400 |
---|---|---|
committer | Steve Clay <steve@mrclay.org> | 2013-03-21 10:48:20 -0400 |
commit | 33015121e7ec691372a56be0c5ef03d24d9c3aac (patch) | |
tree | 843f13b4d401fe139e879ce0e47e3f9940c8d591 /mod/profile/views | |
parent | 4da579033674ecdb134bc921f3f0666072419e6c (diff) | |
download | elgg-33015121e7ec691372a56be0c5ef03d24d9c3aac.tar.gz elgg-33015121e7ec691372a56be0c5ef03d24d9c3aac.tar.bz2 |
Auto-fixes profile URLs broken by #5232
Diffstat (limited to 'mod/profile/views')
-rw-r--r-- | mod/profile/views/default/profile/details.php | 8 |
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"; |