aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/configureController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-13 21:32:50 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-13 21:32:50 +0100
commitd654b34fa7c1f5a09ec8c9bf2b82b43bf5efaa7d (patch)
treeda616f2de6ca7a6c5524ac43ada7b1b300454f96 /app/controllers/configureController.php
parent5bd52cdcb64cdb53aded1dd0bcd6044ca7e98eb4 (diff)
Affichage du nombre total d'article sur la page de configuration
https://github.com/marienfressinaud/FreshRSS/issues/263 Style à améliorer éventuellement
Diffstat (limited to 'app/controllers/configureController.php')
-rwxr-xr-xapp/controllers/configureController.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/configureController.php b/app/controllers/configureController.php
index e9e049f98..815f3f5f4 100755
--- a/app/controllers/configureController.php
+++ b/app/controllers/configureController.php
@@ -259,6 +259,9 @@ class configureController extends ActionController {
$this->view->themes = RSSThemes::get();
View::prependTitle (Translate::t ('general_and_reading_management') . ' - ');
+
+ $entryDAO = new EntryDAO ();
+ $this->view->nb_total = $entryDAO->count ();
}
public function importExportAction () {