diff options
Diffstat (limited to 'data/config.default.php')
-rw-r--r-- | data/config.default.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/data/config.default.php b/data/config.default.php index b0a6c50..672431a 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -138,7 +138,7 @@ $dbtype = 'mysql4'; * * @var string */ -$dbhost = 'localhost'; +$dbhost = '127.0.0.1'; /** * Database port. @@ -302,7 +302,7 @@ $index_sidebar_blocks = array( * @var string * @link http://php.net/date */ -$shortdate = 'd-m-Y'; +$shortdate = 'Y-m-d'; /** * Format of long dates. @@ -710,4 +710,12 @@ $authEmailSuffix = null; */ $unittestUrl = null; +/** + * Allow "unittestMode=1" in URLs. + * Should only be enabled on development systems + * + * @var boolean + */ +$allowUnittestMode = false; + ?> |