remove no longer needed function _printMessage()

This commit is contained in:
Uwe Steinmann 2025-02-03 12:10:38 +01:00
parent cd448c160b
commit e3b6c2f5b6

View File

@ -31,15 +31,6 @@ include("../inc/inc.ClassUI.php");
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
function _printMessage($heading, $message) {
UI::htmlStartPage($heading, "password");
UI::globalBanner();
UI::pageNavigation($heading);
UI::contentContainer($message."<p><a href=\"../out/out.Login.php\">" . getMLText("login") . "</a></p>\n");
UI::htmlEndPage();
return;
}
if (isset($_POST["email"])) {
$email = $_POST["email"];
}
@ -68,5 +59,3 @@ if($user) {
}
header('Location: ../out/out.PasswordSend.php');
exit;
?>