Urlencode query parameters
This commit is contained in:
parent
ebc926a716
commit
cd521b2dcc
|
@ -73,10 +73,10 @@ function openid_content(App $a) {
|
||||||
$first = notags(trim($v));
|
$first = notags(trim($v));
|
||||||
}
|
}
|
||||||
if($k === 'namePerson') {
|
if($k === 'namePerson') {
|
||||||
$args .= '&username=' . notags(trim($v));
|
$args .= '&username=' . urlencode(notags(trim($v)));
|
||||||
}
|
}
|
||||||
if ($k === 'contact/email') {
|
if ($k === 'contact/email') {
|
||||||
$args .= '&email=' . notags(trim($v));
|
$args .= '&email=' . urlencode(notags(trim($v)));
|
||||||
}
|
}
|
||||||
if ($k === 'media/image/aspect11') {
|
if ($k === 'media/image/aspect11') {
|
||||||
$photosq = bin2hex(trim($v));
|
$photosq = bin2hex(trim($v));
|
||||||
|
@ -87,20 +87,20 @@ function openid_content(App $a) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($nick) {
|
if ($nick) {
|
||||||
$args .= '&nickname=' . $nick;
|
$args .= '&nickname=' . urlencode($nick);
|
||||||
}
|
}
|
||||||
elseif ($first) {
|
elseif ($first) {
|
||||||
$args .= '&nickname=' . $first;
|
$args .= '&nickname=' . urlencode($first);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($photosq) {
|
if ($photosq) {
|
||||||
$args .= '&photo=' . $photosq;
|
$args .= '&photo=' . urlencode($photosq);
|
||||||
}
|
}
|
||||||
elseif ($photo) {
|
elseif ($photo) {
|
||||||
$args .= '&photo=' . $photo;
|
$args .= '&photo=' . urlencode($photo);
|
||||||
}
|
}
|
||||||
|
|
||||||
$args .= '&openid_url=' . notags(trim($authid));
|
$args .= '&openid_url=' . urlencode(notags(trim($authid)));
|
||||||
|
|
||||||
goaway(App::get_baseurl() . '/register?' . $args);
|
goaway(App::get_baseurl() . '/register?' . $args);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue