mirror of
https://github.com/friendica/friendica
synced 2024-11-10 04:22:54 +00:00
Urlencode query parameters
This commit is contained in:
parent
ebc926a716
commit
cd521b2dcc
1 changed files with 7 additions and 7 deletions
|
@ -73,10 +73,10 @@ function openid_content(App $a) {
|
|||
$first = notags(trim($v));
|
||||
}
|
||||
if($k === 'namePerson') {
|
||||
$args .= '&username=' . notags(trim($v));
|
||||
$args .= '&username=' . urlencode(notags(trim($v)));
|
||||
}
|
||||
if ($k === 'contact/email') {
|
||||
$args .= '&email=' . notags(trim($v));
|
||||
$args .= '&email=' . urlencode(notags(trim($v)));
|
||||
}
|
||||
if ($k === 'media/image/aspect11') {
|
||||
$photosq = bin2hex(trim($v));
|
||||
|
@ -87,20 +87,20 @@ function openid_content(App $a) {
|
|||
}
|
||||
}
|
||||
if ($nick) {
|
||||
$args .= '&nickname=' . $nick;
|
||||
$args .= '&nickname=' . urlencode($nick);
|
||||
}
|
||||
elseif ($first) {
|
||||
$args .= '&nickname=' . $first;
|
||||
$args .= '&nickname=' . urlencode($first);
|
||||
}
|
||||
|
||||
if ($photosq) {
|
||||
$args .= '&photo=' . $photosq;
|
||||
$args .= '&photo=' . urlencode($photosq);
|
||||
}
|
||||
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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue