diff options
author | friendica <info@friendica.com> | 2014-07-14 21:52:20 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-07-14 21:52:20 -0700 |
commit | 01491e7d61576235f364af04039c9219ef6f6456 (patch) | |
tree | 4ff7b92285e72b532ea810b84c5d6a161999e27b /include | |
parent | c398d556b3acf0b5b598b4648a7db70ee1d5317b (diff) | |
download | volse-hubzilla-01491e7d61576235f364af04039c9219ef6f6456.tar.gz volse-hubzilla-01491e7d61576235f364af04039c9219ef6f6456.tar.bz2 volse-hubzilla-01491e7d61576235f364af04039c9219ef6f6456.zip |
limit fields to what we require
Diffstat (limited to 'include')
-rw-r--r-- | include/zot.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index 1565a11e3..e4fb5bc56 100644 --- a/include/zot.php +++ b/include/zot.php @@ -2133,7 +2133,7 @@ function build_sync_packet($uid = 0, $packet = null, $groups_changed = false) { } if($groups_changed) { - $r = q("select * from groups where uid = %d", + $r = q("select hash as collection, visible, deleted, name from groups where uid = %d", intval($uid) ); if($r) |