summaryrefslogtreecommitdiff
path: root/config/config.default.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-01-01 15:43:20 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-01 15:43:20 +0100
commit5e850171e2f323e0ac13df5f8e1c1d5046959a52 (patch)
treee1f29f08a01b503b76832dd7c626f4eb0ddaab68 /config/config.default.php
parentb8ebd23f6df8317a2b091335640ddd89de8cc55b (diff)
Fixed "Constant already defined" notice
Diffstat (limited to 'config/config.default.php')
-rw-r--r--config/config.default.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/config/config.default.php b/config/config.default.php
index 64c43cfa..49530608 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -25,9 +25,9 @@ $LETZTES_AUSTRAGEN = 3;
// define('CRYPT_ALG', '$1'); // MD5
// define('CRYPT_ALG', '$2y$13'); // Blowfish
// define('CRYPT_ALG', '$5$rounds=5000'); // SHA-256
-define('CRYPT_ALG', '$6$rounds=5000'); // SHA-512
+// define('CRYPT_ALG', '$6$rounds=5000'); // SHA-512
-define('MIN_PASSWORD_LENGTH', 8);
+// define('MIN_PASSWORD_LENGTH', 8);
// Wenn Engel beim Registrieren oder in ihrem Profil eine T-Shirt Größe angeben sollen, auf true setzen:
$enable_tshirt_size = true;
@@ -64,6 +64,6 @@ $config = [
'host' => "localhost",
'user' => "root",
'pw' => "",
- 'db' => "engelsystem"
+ 'db' => "engelsystem"
];
?>