implement usage of __DIR__ to fix references on include
This commit is contained in:
@@ -44,14 +44,14 @@ try {
|
||||
throw new Exception('"new_password" is not defined');
|
||||
}
|
||||
|
||||
require_once("../helpers.php");
|
||||
require_once(__DIR__ . "/../helpers.php");
|
||||
$localpart = stripLocalpart($input["auth"]["user"]);
|
||||
|
||||
if (empty($localpart)) {
|
||||
throw new Exception("localpart cannot be identified");
|
||||
}
|
||||
|
||||
require_once("../database.php");
|
||||
require_once(__DIR__ . "/../database.php");
|
||||
if (!$mx_db->updatePassword(
|
||||
$localpart, $input["auth"]["password"], $input["new_password"]
|
||||
)) {
|
||||
|
||||
Reference in New Issue
Block a user