mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-26 19:11:07 +00:00
Cleanup
This commit is contained in:
parent
4d85d7e9ba
commit
78cedc2262
3 changed files with 3 additions and 28 deletions
|
@ -5,7 +5,7 @@ imports:
|
||||||
|
|
||||||
framework:
|
framework:
|
||||||
#esi: ~
|
#esi: ~
|
||||||
#translator: { fallback: "%locale%" }
|
translator: { fallback: "%locale%" }
|
||||||
secret: "%secret%"
|
secret: "%secret%"
|
||||||
router:
|
router:
|
||||||
resource: "%kernel.root_dir%/config/routing.yml"
|
resource: "%kernel.root_dir%/config/routing.yml"
|
||||||
|
@ -103,4 +103,4 @@ fos_rest:
|
||||||
routing_loader:
|
routing_loader:
|
||||||
default_format: json
|
default_format: json
|
||||||
|
|
||||||
nelmio_api_doc: ~
|
nelmio_api_doc: ~
|
||||||
|
|
|
@ -1,25 +0,0 @@
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
* wallabag, self hostable application allowing you to not miss any content anymore
|
|
||||||
*
|
|
||||||
* @category wallabag
|
|
||||||
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
|
||||||
* @copyright 2013
|
|
||||||
* @license http://opensource.org/licenses/MIT see COPYING file
|
|
||||||
*/
|
|
||||||
|
|
||||||
define('ROOT', dirname(__FILE__) . '/../..');
|
|
||||||
|
|
||||||
require_once ROOT . '/vendor/autoload.php';
|
|
||||||
|
|
||||||
# system configuration
|
|
||||||
require_once __DIR__ . '/config.inc.php';
|
|
||||||
require_once __DIR__ . '/config.inc.default.php';
|
|
||||||
|
|
||||||
if (!ini_get('date.timezone') || !@date_default_timezone_set(ini_get('date.timezone'))) {
|
|
||||||
date_default_timezone_set('UTC');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (defined('ERROR_REPORTING')) {
|
|
||||||
error_reporting(ERROR_REPORTING);
|
|
||||||
}
|
|
|
@ -38,4 +38,4 @@ parameters:
|
||||||
export_pdf: true
|
export_pdf: true
|
||||||
|
|
||||||
# List view
|
# List view
|
||||||
items_on_page: 12
|
items_on_page: 12
|
||||||
|
|
Loading…
Reference in a new issue