diff options
author | friendica <info@friendica.com> | 2014-08-28 19:05:13 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-28 19:05:13 -0700 |
commit | 95def2a247eca54a52744e405e837d5810cca83d (patch) | |
tree | a8bbd8613b9bc43ae60b03744afd14a81791c584 /mod/directory.php | |
parent | e20fe41f2310e77f57bece8e593a856b34bedc34 (diff) | |
download | volse-hubzilla-95def2a247eca54a52744e405e837d5810cca83d.tar.gz volse-hubzilla-95def2a247eca54a52744e405e837d5810cca83d.tar.bz2 volse-hubzilla-95def2a247eca54a52744e405e837d5810cca83d.zip |
retro-actively set standalone directory fix, also a fix for directory endless scroll when you hit the end.
Diffstat (limited to 'mod/directory.php')
-rw-r--r-- | mod/directory.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/directory.php b/mod/directory.php index 8dbed4115..39eeb36ce 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -233,6 +233,11 @@ function directory_content(&$a) { } else { + if($_REQUEST['aj']) { + $o = '<div id="content-complete"></div>'; + echo $o; + killme(); + } if($a->pager['page'] == 1 && $j['records'] == 0 && strpos($search,'@')) { goaway(z_root() . '/chanview/?f=&address=' . $search); } |