aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/config/global.inc.php
diff options
context:
space:
mode:
authorJeremy <jeremy.benoist@gmail.com>2015-02-16 21:31:16 +0100
committerJeremy <jeremy.benoist@gmail.com>2015-02-16 21:31:58 +0100
commit78cedc2262fa6d13904915cacd546389d3f453fc (patch)
treeb86ed1db197063d3dc09b69aab8ef2b95b80273f /app/config/global.inc.php
parent4d85d7e9ba676bd5ac3428976ce9227f460eb542 (diff)
downloadwallabag-78cedc2262fa6d13904915cacd546389d3f453fc.tar.gz
wallabag-78cedc2262fa6d13904915cacd546389d3f453fc.tar.zst
wallabag-78cedc2262fa6d13904915cacd546389d3f453fc.zip
Cleanup
Diffstat (limited to 'app/config/global.inc.php')
-rwxr-xr-xapp/config/global.inc.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/config/global.inc.php b/app/config/global.inc.php
deleted file mode 100755
index 8e62818b..00000000
--- a/app/config/global.inc.php
+++ /dev/null
@@ -1,25 +0,0 @@
1<?php
2/**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://opensource.org/licenses/MIT see COPYING file
9 */
10
11define('ROOT', dirname(__FILE__) . '/../..');
12
13require_once ROOT . '/vendor/autoload.php';
14
15# system configuration
16require_once __DIR__ . '/config.inc.php';
17require_once __DIR__ . '/config.inc.default.php';
18
19if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timezone'))) {
20 date_default_timezone_set('UTC');
21}
22
23if (defined('ERROR_REPORTING')) {
24 error_reporting(ERROR_REPORTING);
25}