diff options
author | zottel <github@zottel.net> | 2013-12-17 12:23:39 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2013-12-17 12:23:39 +0100 |
commit | b3e3073b991c2ee898b0d8f4edd2df221a538631 (patch) | |
tree | eae321e2360fcc5a9570f089dcac4303a56730ec /mod | |
parent | 9728a1303d4cd6b6cb8866eb79194b2d698b9961 (diff) | |
download | volse-hubzilla-b3e3073b991c2ee898b0d8f4edd2df221a538631.tar.gz volse-hubzilla-b3e3073b991c2ee898b0d8f4edd2df221a538631.tar.bz2 volse-hubzilla-b3e3073b991c2ee898b0d8f4edd2df221a538631.zip |
JS-less display
Diffstat (limited to 'mod')
-rw-r--r-- | mod/display.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mod/display.php b/mod/display.php index 9aafec8c3..65114272a 100644 --- a/mod/display.php +++ b/mod/display.php @@ -139,13 +139,13 @@ function display_content(&$a, $update = 0, $load = false) { $sql_extra = public_permissions_sql(get_observer_hash()); - if($update && $load) { + if(($update && $load) || ($_COOKIE['jsAvailable'] != 1)) { $updateable = false; $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage'])); - if($load) { + if($load || ($_COOKIE['jsAvailable'] != 1)) { $r = null; if(local_user()) { $r = q("SELECT * from item @@ -202,8 +202,11 @@ function display_content(&$a, $update = 0, $load = false) { } - - $o .= conversation($a, $items, 'display', $update, 'client'); + if ($_COOKIE['jsAvailable'] == 1) { + $o .= conversation($a, $items, 'display', $update, 'client'); + } else { + $o .= conversation($a, $items, 'display', $update, 'traditional'); + } if($updateable) { $x = q("UPDATE item SET item_flags = ( item_flags ^ %d ) |