15 lines
522 B
PHP
15 lines
522 B
PHP
|
<?php
|
||
|
$GLOBALS['login'] = 'root';
|
||
|
$GLOBALS['hash'] = 'hash';
|
||
|
$GLOBALS['salt'] = 'salt';
|
||
|
$GLOBALS['timezone'] = 'Europe/Paris';
|
||
|
$GLOBALS['title'] = 'title';
|
||
|
$GLOBALS['titleLink'] = 'titleLink';
|
||
|
$GLOBALS['redirector'] = 'lala';
|
||
|
$GLOBALS['disablesessionprotection'] = false;
|
||
|
$GLOBALS['privateLinkByDefault'] = false;
|
||
|
$GLOBALS['config']['DATADIR'] = 'tests/Updater';
|
||
|
$GLOBALS['config']['PAGECACHE'] = 'sandbox/pagecache';
|
||
|
$GLOBALS['config']['DATASTORE'] = 'data/datastore.php';
|
||
|
$GLOBALS['plugins']['WALLABAG_VERSION'] = '1';
|