From e3b6c2f5b6c9d10fa4c59950e8c24a16ebd5d751 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Mon, 3 Feb 2025 12:10:38 +0100 Subject: [PATCH] remove no longer needed function _printMessage() --- op/op.PasswordForgotten.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/op/op.PasswordForgotten.php b/op/op.PasswordForgotten.php index 03ae90ac0..a77341174 100644 --- a/op/op.PasswordForgotten.php +++ b/op/op.PasswordForgotten.php @@ -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."

" . getMLText("login") . "

\n"); - UI::htmlEndPage(); - return; -} - if (isset($_POST["email"])) { $email = $_POST["email"]; } @@ -68,5 +59,3 @@ if($user) { } header('Location: ../out/out.PasswordSend.php'); -exit; -?>