mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-25 11:06:22 -05:00
Use FreshRSS_Context::$conf only
- Replace $this->view->conf in controllers - Replace $this->conf in views
This commit is contained in:
@@ -8,7 +8,7 @@ class FreshRSS_javascript_Controller extends Minz_ActionController {
|
||||
public function actualizeAction() {
|
||||
header('Content-Type: text/javascript; charset=UTF-8');
|
||||
$feedDAO = FreshRSS_Factory::createFeedDao();
|
||||
$this->view->feeds = $feedDAO->listFeedsOrderUpdate($this->view->conf->ttl_default);
|
||||
$this->view->feeds = $feedDAO->listFeedsOrderUpdate(FreshRSS_Context::$conf->ttl_default);
|
||||
}
|
||||
|
||||
public function nbUnreadsPerFeedAction() {
|
||||
|
||||
Reference in New Issue
Block a user