diff options
| author | 2014-10-16 17:15:51 +0200 | |
|---|---|---|
| committer | 2014-10-17 16:24:21 +0200 | |
| commit | 5797344aff9ceebbdeb6e49305f3984a5c89f82c (patch) | |
| tree | 7f9b0b609297852cb470930bfa3ffca6fd631892 /app/Models/EntryDAOSQLite.php | |
| parent | d4ad951b9b686f387056bda8f3fa6ede8d9ca3f1 (diff) | |
Fix a bug to get size of user (SQLite)
Diffstat (limited to 'app/Models/EntryDAOSQLite.php')
| -rw-r--r-- | app/Models/EntryDAOSQLite.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/EntryDAOSQLite.php b/app/Models/EntryDAOSQLite.php index 66078aca9..4a3fe24a2 100644 --- a/app/Models/EntryDAOSQLite.php +++ b/app/Models/EntryDAOSQLite.php @@ -124,6 +124,6 @@ class FreshRSS_EntryDAOSQLite extends FreshRSS_EntryDAO { } public function size($all = false) { - return @filesize(DATA_PATH . '/' . Minz_Session::param('currentUser', '_') . '.sqlite'); + return @filesize(DATA_PATH . '/' . $this->current_user . '.sqlite'); } } |
