Fix MySQL create table feeds (#2047)

https://github.com/FreshRSS/FreshRSS/issues/2042
This commit is contained in:
Alexandre Alapetite
2018-10-14 13:48:59 +02:00
committed by GitHub
parent 8221c807a1
commit c8b54ae807
3 changed files with 3 additions and 3 deletions

View File

@@ -166,7 +166,7 @@ class FreshRSS_user_Controller extends Minz_ActionController {
$entryDAO = FreshRSS_Factory::createEntryDao($this->view->current_user);
$this->view->nb_articles = $entryDAO->count();
$databaseDAO = FreshRSS_Factory::createDatabaseDAO();
$databaseDAO = FreshRSS_Factory::createDatabaseDAO($this->view->current_user);
$this->view->size_user = $databaseDAO->size();
}
}