Merge pull request #1029 from tobiasd/fix1027
don't add http:// if homepage is not set
This commit is contained in:
commit
9248c2c3c4
|
@ -288,7 +288,7 @@ function profiles_post(&$a) {
|
||||||
|
|
||||||
$sexual = notags(trim($_POST['sexual']));
|
$sexual = notags(trim($_POST['sexual']));
|
||||||
$homepage = notags(trim($_POST['homepage']));
|
$homepage = notags(trim($_POST['homepage']));
|
||||||
if (strpos($homepage, 'http') !== 0) {
|
if ((strpos($homepage, 'http') !== 0) && (strlen($homepage))) {
|
||||||
// neither http nor https in URL, add them
|
// neither http nor https in URL, add them
|
||||||
$homepage = 'http://'.$homepage;
|
$homepage = 'http://'.$homepage;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user