FIX: Password verification not implemented in RCC login page

This commit is contained in:
Marcel Kapfer (mmk2410) 2016-05-18 14:46:10 +02:00
parent 3a8494417e
commit b67c9b3415

View file

@ -106,7 +106,7 @@ if ($config["rcc"]["rcc"] == "on") {
<?php <?php
} else { } else {
if ($passwd == $password) { if (password_verify($passwd, $password)) {
$_SESSION['login'] = true; $_SESSION['login'] = true;
include_once "./../res/php/BlogListGenerator.php"; include_once "./../res/php/BlogListGenerator.php";
?> ?>