diff options
author | Friendika <info@friendika.com> | 2011-07-05 23:23:43 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-05 23:23:43 -0700 |
commit | 84d12c3e08ae4b6fe228ce881b0c1570175d1667 (patch) | |
tree | bb8f4ccca207ff6c226cf79f4ce348c5bc8d9df9 /mod/dfrn_poll.php | |
parent | c221d5ea597040c27a8918f9c08629e979a6e273 (diff) | |
download | volse-hubzilla-84d12c3e08ae4b6fe228ce881b0c1570175d1667.tar.gz volse-hubzilla-84d12c3e08ae4b6fe228ce881b0c1570175d1667.tar.bz2 volse-hubzilla-84d12c3e08ae4b6fe228ce881b0c1570175d1667.zip |
move hidewall to user table - queries are getting too complicated and servers falling over
Diffstat (limited to 'mod/dfrn_poll.php')
-rw-r--r-- | mod/dfrn_poll.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dfrn_poll.php b/mod/dfrn_poll.php index 7d8568188..76803ef1b 100644 --- a/mod/dfrn_poll.php +++ b/mod/dfrn_poll.php @@ -31,7 +31,7 @@ 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", + $r = q("SELECT `hidewall` FROM `user` WHERE `user`.`nickname` = '%s' LIMIT 1", dbesc($a->argv[1]) ); if(count($r) && $r[0]['hidewall']) |