aboutsummaryrefslogtreecommitdiff
path: root/app/Models/EntryDAOSQLite.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-28 19:46:04 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-28 19:46:04 +0100
commit0cd975bfd06b45865722d85fbdab120439623ddc (patch)
tree790f442337f88cfecb20b0c62bfec2f61af83c94 /app/Models/EntryDAOSQLite.php
parent5f327abeeca1953ff9d11f93afb9fbd9ceb825ba (diff)
parent497d295be470454b7bd068a5c5cceda8caa19527 (diff)
Merge branch '729-move_data' into dev
To update, please follow instructions in https://github.com/FreshRSS/FreshRSS/issues/729
Diffstat (limited to 'app/Models/EntryDAOSQLite.php')
-rw-r--r--app/Models/EntryDAOSQLite.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/EntryDAOSQLite.php b/app/Models/EntryDAOSQLite.php
index bb1539e0c..ffe0f037c 100644
--- a/app/Models/EntryDAOSQLite.php
+++ b/app/Models/EntryDAOSQLite.php
@@ -169,6 +169,6 @@ class FreshRSS_EntryDAOSQLite extends FreshRSS_EntryDAO {
}
public function size($all = false) {
- return @filesize(DATA_PATH . '/' . $this->current_user . '.sqlite');
+ return @filesize(join_path(DATA_PATH, 'users', $this->current_user, 'db.sqlite'));
}
}