diff options
author | friendica <info@friendica.com> | 2013-02-08 16:29:18 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-08 16:29:18 -0800 |
commit | 2f36f6307df736cdbca4ce16d86266db89480b65 (patch) | |
tree | 882584af3aec7ac6143a7dea7c3216af8ff9ef91 | |
parent | ce95b1f68c5dccddeade704528c56917936a4e52 (diff) | |
download | volse-hubzilla-2f36f6307df736cdbca4ce16d86266db89480b65.tar.gz volse-hubzilla-2f36f6307df736cdbca4ce16d86266db89480b65.tar.bz2 volse-hubzilla-2f36f6307df736cdbca4ce16d86266db89480b65.zip |
another sql error from the logs
-rw-r--r-- | include/acl_selectors.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/acl_selectors.php b/include/acl_selectors.php index 5d568f7b6..f4dacb74a 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -171,7 +171,7 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"$size\" $tabindex >\r\n"; $r = q("SELECT abook_id, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash - where abook flags = 0 or not ( abook_flags & %d ) and abook_channel = %d + where abook_flags = 0 or not ( abook_flags & %d ) and abook_channel = %d $sql_extra ORDER BY xchan_name ASC ", intval(ABOOK_FLAG_SELF), |