]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/poche/global.inc.php
Merge pull request #784 from wallabag/fix-successful-add-message
[github/wallabag/wallabag.git] / inc / poche / global.inc.php
index 2c22c0145e48adf808ff18593eb630741f1bf202..b8c487e39277e604c684c880e4b03d55d358829e 100755 (executable)
@@ -22,6 +22,7 @@ require_once ROOT . '/vendor/autoload.php';
 require_once INCLUDES . '/poche/Template.class.php';
 require_once INCLUDES . '/poche/Language.class.php';
 require_once INCLUDES . '/poche/Routing.class.php';
+require_once INCLUDES . '/poche/WallabagEpub.class.php';
 require_once INCLUDES . '/poche/Poche.class.php';
 
 require_once INCLUDES . '/poche/Database.class.php';
@@ -50,4 +51,8 @@ if (DOWNLOAD_PICTURES) {
 
 if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timezone'))) {
     date_default_timezone_set('UTC');
-}
\ No newline at end of file
+}
+
+if (defined('ERROR_REPORTING')) {
+    error_reporting(ERROR_REPORTING);
+}