remove stray debugging

This commit is contained in:
friendica 2013-07-19 03:02:08 -07:00
parent b4f4b8cb13
commit 45797f01ad

View File

@ -47,7 +47,7 @@ function lockview_content(&$a) {
stringify_array_elms($allowed_users,true); stringify_array_elms($allowed_users,true);
stringify_array_elms($deny_groups,true); stringify_array_elms($deny_groups,true);
stringify_array_elms($deny_users,true); stringify_array_elms($deny_users,true);
dbg(1);
if(count($allowed_groups)) { if(count($allowed_groups)) {
$r = q("SELECT name FROM `group` WHERE hash IN ( " . implode(', ', $allowed_groups) . " )"); $r = q("SELECT name FROM `group` WHERE hash IN ( " . implode(', ', $allowed_groups) . " )");
if($r) if($r)
@ -72,7 +72,7 @@ dbg(1);
foreach($r as $rr) foreach($r as $rr)
$l[] = '<strike>' . $rr['xchan_name'] . '</strike>'; $l[] = '<strike>' . $rr['xchan_name'] . '</strike>';
} }
dbg(0);
echo $o . implode(', ', $l); echo $o . implode(', ', $l);
killme(); killme();