diff options
author | friendica <info@friendica.com> | 2013-07-19 01:20:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-19 01:20:51 -0700 |
commit | ade81747503fe64fc3c7f99e0e3ff34b7d6cc3e7 (patch) | |
tree | 7c73526ce6879dc943f9e413e7edd7a638c042a5 /mod/lockview.php | |
parent | 29f53a40499a4b2b170597991877fcbd02861316 (diff) | |
download | volse-hubzilla-ade81747503fe64fc3c7f99e0e3ff34b7d6cc3e7.tar.gz volse-hubzilla-ade81747503fe64fc3c7f99e0e3ff34b7d6cc3e7.tar.bz2 volse-hubzilla-ade81747503fe64fc3c7f99e0e3ff34b7d6cc3e7.zip |
private pokes - perhaps a little *too* private.
Diffstat (limited to 'mod/lockview.php')
-rw-r--r-- | mod/lockview.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/lockview.php b/mod/lockview.php index 7dda85623..fb6ccd2f4 100644 --- a/mod/lockview.php +++ b/mod/lockview.php @@ -47,7 +47,7 @@ function lockview_content(&$a) { stringify_array_elms($allowed_users,true); stringify_array_elms($deny_groups,true); stringify_array_elms($deny_users,true); - +dbg(1); if(count($allowed_groups)) { $r = q("SELECT name FROM `group` WHERE hash IN ( " . implode(', ', $allowed_groups) . " )"); if($r) @@ -72,7 +72,7 @@ function lockview_content(&$a) { foreach($r as $rr) $l[] = '<strike>' . $rr['xchan_name'] . '</strike>'; } - +dbg(0); echo $o . implode(', ', $l); killme(); |