Merge pull request #891 from tobiasd/check_http_in_homepage

added a check for http in homepage url, this should fix issue #768
This commit is contained in:
fabrixxm 2014-01-18 00:59:17 -08:00
commit f412934e7d
1 changed files with 4 additions and 0 deletions

View File

@ -288,6 +288,10 @@ function profiles_post(&$a) {
$sexual = notags(trim($_POST['sexual']));
$homepage = notags(trim($_POST['homepage']));
if (strpos($homepage, 'http') !== 0) {
// neither http nor https in URL, add them
$homepage = 'http://'.$homepage;
}
$hometown = notags(trim($_POST['hometown']));
$politic = notags(trim($_POST['politic']));
$religion = notags(trim($_POST['religion']));