diff options
author | friendica <info@friendica.com> | 2013-09-09 13:45:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-09-09 13:45:51 -0700 |
commit | 75dfcf9c4f558de41798166329dd5b6e4bf35fd0 (patch) | |
tree | 42e94f3c85cbf3e6504f9ed391e2124bbc7b39d3 | |
parent | 461999356226574920ef0ce7eb8cb47f78cc666a (diff) | |
download | volse-hubzilla-75dfcf9c4f558de41798166329dd5b6e4bf35fd0.tar.gz volse-hubzilla-75dfcf9c4f558de41798166329dd5b6e4bf35fd0.tar.bz2 volse-hubzilla-75dfcf9c4f558de41798166329dd5b6e4bf35fd0.zip |
quick fix to directory
-rw-r--r-- | mod/dirsearch.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php index 064c3f287..6034fdc12 100644 --- a/mod/dirsearch.php +++ b/mod/dirsearch.php @@ -113,11 +113,11 @@ function dirsearch_content(&$a) { if($mtime) { $qlimit = ''; - $sql_extra .= " and xchan_hash in ( select ud_hash from updates where ud_date > '" . dbesc($mtime) . "' ) "; +// $sql_extra .= " and xchan_hash in ( select ud_hash from updates where ud_date > '" . dbesc($mtime) . "' ) "; } if($sort_order == 'date') - $order = " order by ud_date desc "; + $order = ""; // " order by ud_date desc "; elseif($sort_order == 'reverse') $order = " order by xchan_name desc "; else @@ -125,7 +125,7 @@ function dirsearch_content(&$a) { - $r = q("SELECT xchan.*, xprof.*, updates.* from xchan left join xprof on xchan_hash = xprof_hash left join updates on xchan_hash = ud_hash where $logic $sql_extra and not ( xchan_flags & %d ) and not ( xchan_flags & %d ) $order $qlimit ", + $r = q("SELECT xchan.*, xprof.* from xchan left join xprof on xchan_hash = xprof_hash where $logic $sql_extra and not ( xchan_flags & %d ) and not ( xchan_flags & %d ) $order $qlimit ", intval(XCHAN_FLAGS_HIDDEN), intval(XCHAN_FLAGS_ORPHAN) ); |