summaryrefslogtreecommitdiff
path: root/config/config.default.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-01-01 18:49:43 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-01 18:50:53 +0100
commit1f8d1eb4bbe9a764fa69a2da936db7adbfb2941e (patch)
tree716db7272e50734907f1f6fc35a1a93db0a97428 /config/config.default.php
parent5e850171e2f323e0ac13df5f8e1c1d5046959a52 (diff)
Fixed "Constant already defined" notice
Added more ugly global variables
Diffstat (limited to 'config/config.default.php')
-rw-r--r--config/config.default.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/config/config.default.php b/config/config.default.php
index 49530608..0b268c12 100644
--- a/config/config.default.php
+++ b/config/config.default.php
@@ -22,12 +22,12 @@ $LETZTES_AUSTRAGEN = 3;
// Falls ein Benutzerpasswort in einem anderen Format gespeichert ist,
// wird es bei der ersten Benutzung des Klartext-Passworts in das neue Format
// konvertiert.
-// 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
+// $crypt_alg = '$1'; // MD5
+// $crypt_alg = '$2y$13'; // Blowfish
+// $crypt_alg = '$5$rounds=5000'; // SHA-256
+$crypt_alg = '$6$rounds=5000'; // SHA-512
-// define('MIN_PASSWORD_LENGTH', 8);
+$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;