diff options
| author | 2014-10-22 13:52:20 +0200 | |
|---|---|---|
| committer | 2014-10-22 13:52:20 +0200 | |
| commit | f1f9b2f5ff60f6dca05fad831b766ea7d63ff3a3 (patch) | |
| tree | 9f764ec6b7be91554e1ae20323a55c1f1d2be992 /app/layout/layout.phtml | |
| parent | b446a510ebacddd1437d907e795c83b3d05a9b98 (diff) | |
Entries are loaded again! It's working :)
See https://github.com/marienfressinaud/FreshRSS/issues/634
Diffstat (limited to 'app/layout/layout.phtml')
| -rw-r--r-- | app/layout/layout.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml index a8c70ec64..2b38df4a1 100644 --- a/app/layout/layout.phtml +++ b/app/layout/layout.phtml @@ -10,9 +10,9 @@ <?php $this->renderHelper('javascript_vars'); ?> //]]></script> <?php - if (!empty($this->nextId)) { + if (FreshRSS_Context::$next_id !== '') { $params = Minz_Request::params(); - $params['next'] = $this->nextId; + $params['next'] = FreshRSS_Context::$next_id; $params['ajax'] = 1; ?> <link id="prefetch" rel="next prefetch" href="<?php echo Minz_Url::display(array('c' => Minz_Request::controllerName(), 'a' => Minz_Request::actionName(), 'params' => $params)); ?>" /> |
