Fixed "Constant already defined" notice
This commit is contained in:
parent
b8ebd23f6d
commit
5e850171e2
|
@ -25,9 +25,9 @@ $LETZTES_AUSTRAGEN = 3;
|
||||||
// define('CRYPT_ALG', '$1'); // MD5
|
// define('CRYPT_ALG', '$1'); // MD5
|
||||||
// define('CRYPT_ALG', '$2y$13'); // Blowfish
|
// define('CRYPT_ALG', '$2y$13'); // Blowfish
|
||||||
// define('CRYPT_ALG', '$5$rounds=5000'); // SHA-256
|
// 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:
|
// Wenn Engel beim Registrieren oder in ihrem Profil eine T-Shirt Größe angeben sollen, auf true setzen:
|
||||||
$enable_tshirt_size = true;
|
$enable_tshirt_size = true;
|
||||||
|
@ -64,6 +64,6 @@ $config = [
|
||||||
'host' => "localhost",
|
'host' => "localhost",
|
||||||
'user' => "root",
|
'user' => "root",
|
||||||
'pw' => "",
|
'pw' => "",
|
||||||
'db' => "engelsystem"
|
'db' => "engelsystem"
|
||||||
];
|
];
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -68,6 +68,9 @@ if (file_exists(realpath(__DIR__ . '/../config/config.php'))) {
|
||||||
require_once realpath(__DIR__ . '/../config/config.php');
|
require_once realpath(__DIR__ . '/../config/config.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
defined('CRYPT_ALG') || define('CRYPT_ALG', '$6$rounds=5000'); // SHA-512
|
||||||
|
defined('MIN_PASSWORD_LENGTH') || define('MIN_PASSWORD_LENGTH', 8);
|
||||||
|
|
||||||
if ($maintenance_mode) {
|
if ($maintenance_mode) {
|
||||||
echo file_get_contents(__DIR__ . '/../public/maintenance.html');
|
echo file_get_contents(__DIR__ . '/../public/maintenance.html');
|
||||||
die();
|
die();
|
||||||
|
|
Loading…
Reference in New Issue