diff options
Diffstat (limited to 'app/Services/ExportService.php')
| -rw-r--r-- | app/Services/ExportService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Services/ExportService.php b/app/Services/ExportService.php index 38f896324..78ef45c4e 100644 --- a/app/Services/ExportService.php +++ b/app/Services/ExportService.php @@ -27,7 +27,7 @@ class FreshRSS_Export_Service { public function __construct($username) { $this->username = $username; - $this->category_dao = new FreshRSS_CategoryDAO($username); + $this->category_dao = FreshRSS_Factory::createCategoryDao($username); $this->feed_dao = FreshRSS_Factory::createFeedDao($username); $this->entry_dao = FreshRSS_Factory::createEntryDao($username); $this->tag_dao = FreshRSS_Factory::createTagDao(); |
