diff options
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r-- | mod/dirsearch.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 1b1ad0877..50348bc4a 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -72,11 +72,12 @@ function dirsearch_content(&$a) { } $order = " ORDER BY `xchan_name` ASC "; - +dbg(1); $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where 1 $sql_extra $order LIMIT %d , %d ", intval($startrec), intval($perpage) ); +dbg(0); $ret['page'] = $page + 1; $ret['records'] = count($r); |