aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dfrn_poll.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-25 17:20:41 -0700
committerFriendika <info@friendika.com>2011-05-25 17:20:41 -0700
commitcd536731c33ea83eaf8f2b2ff4e4dcb1062feca5 (patch)
tree80d2aca488cc47621ccb001abeb79f0096b5486e /mod/dfrn_poll.php
parentb6b2997b435d9e7df6040d208fa0c68503fc1ee9 (diff)
downloadvolse-hubzilla-cd536731c33ea83eaf8f2b2ff4e4dcb1062feca5.tar.gz
volse-hubzilla-cd536731c33ea83eaf8f2b2ff4e4dcb1062feca5.tar.bz2
volse-hubzilla-cd536731c33ea83eaf8f2b2ff4e4dcb1062feca5.zip
minor string update
Diffstat (limited to 'mod/dfrn_poll.php')
-rw-r--r--mod/dfrn_poll.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php
index ef8469523..7d8568188 100644
--- a/mod/dfrn_poll.php
+++ b/mod/dfrn_poll.php
@@ -31,6 +31,12 @@ function dfrn_poll_init(&$a) {
killme();
}
+ $r = q("SELECT `hidewall` FROM `profile` LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid` WHERE `user`.`nickname` = '%s' AND `profile`.`is-default` = 1 LIMIT 1",
+ dbesc($a->argv[1])
+ );
+ if(count($r) && $r[0]['hidewall'])
+ killme();
+
logger('dfrn_poll: public feed request from ' . $_SERVER['REMOTE_ADDR'] );
header("Content-type: application/atom+xml");
$o = get_feed_for($a, '', $a->argv[1],$last_update);