aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/userController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2018-10-14 13:48:59 +0200
committerGravatar GitHub <noreply@github.com> 2018-10-14 13:48:59 +0200
commitc8b54ae807f583723748b5a8cebf9925fb288f9d (patch)
tree64e29b39d69c704f2b389369072304ba9544ea70 /app/Controllers/userController.php
parent8221c807a10942c77309547e9c7dc709146f7117 (diff)
Fix MySQL create table feeds (#2047)
https://github.com/FreshRSS/FreshRSS/issues/2042
Diffstat (limited to 'app/Controllers/userController.php')
-rw-r--r--app/Controllers/userController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php
index 75a4303d6..2f066e25f 100644
--- a/app/Controllers/userController.php
+++ b/app/Controllers/userController.php
@@ -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();
}
}