diff options
author | Friendika <info@friendika.com> | 2010-12-24 19:04:40 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-24 19:04:40 -0800 |
commit | 3ba322889fdfecc07099377cf6e28c4b2fb30e59 (patch) | |
tree | 4be2100f2f9b06c7c761c784fb826b6cd61742ae /mod/dfrn_poll.php | |
parent | 10731ea361005bc6a56516ad03984b6c366b3a27 (diff) | |
download | volse-hubzilla-3ba322889fdfecc07099377cf6e28c4b2fb30e59.tar.gz volse-hubzilla-3ba322889fdfecc07099377cf6e28c4b2fb30e59.tar.bz2 volse-hubzilla-3ba322889fdfecc07099377cf6e28c4b2fb30e59.zip |
undo one of the hooks from last checkin - passing objects led to error
Diffstat (limited to 'mod/dfrn_poll.php')
-rw-r--r-- | mod/dfrn_poll.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index a8c27efc1..22d2ee40f 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -1,11 +1,14 @@ <?php + + require_once('include/items.php'); require_once('include/auth.php'); function dfrn_poll_init(&$a) { + $dfrn_id = ((x($_GET,'dfrn_id')) ? $_GET['dfrn_id'] : ''); $type = ((x($_GET,'type')) ? $_GET['type'] : 'data'); $last_update = ((x($_GET,'last_update')) ? $_GET['last_update'] : ''); |