mirror of
https://github.com/friendica/friendica
synced 2025-04-22 21:10:10 +00:00
pass params as string rather than array so it doesn't
get changed to multipart/forma-data
This commit is contained in:
parent
0d2650b29b
commit
2ae38e3fbf
2 changed files with 2 additions and 8 deletions
|
@ -303,7 +303,7 @@
|
|||
}
|
||||
|
||||
if((strlen($hub)) && ($cmd !== 'mail') && (followup == false)) {
|
||||
$params = array('hub.mode' => 'publish', 'hub.url' => urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] ));
|
||||
$params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
|
||||
post_url($hub,$params);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue