aboutsummaryrefslogtreecommitdiffstats
path: root/include/notifier.php
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-09-30 22:30:18 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-09-30 22:30:18 -0700
commit2ae38e3fbffe2f51fc1dc56e398625e3cebb667c (patch)
tree61d6ab6be83bc76a1a3a70d6694c28205b14124a /include/notifier.php
parent0d2650b29b92943a1570896491865c12fd28fda8 (diff)
downloadvolse-hubzilla-2ae38e3fbffe2f51fc1dc56e398625e3cebb667c.tar.gz
volse-hubzilla-2ae38e3fbffe2f51fc1dc56e398625e3cebb667c.tar.bz2
volse-hubzilla-2ae38e3fbffe2f51fc1dc56e398625e3cebb667c.zip
pass params as string rather than array so it doesn't
get changed to multipart/forma-data
Diffstat (limited to 'include/notifier.php')
-rw-r--r--include/notifier.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php
index b8b07ab58..ee2b22ca3 100644
--- a/include/notifier.php
+++ b/include/notifier.php
@@ -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);
}