no need to include inc.ClassEmailNotify.php

This commit is contained in:
Uwe Steinmann 2022-03-04 08:17:34 +01:00
parent e4fb5d5255
commit 210f5cb1c4

View File

@ -27,17 +27,16 @@ include("../inc/inc.Extension.php");
include("../inc/inc.DBInit.php"); include("../inc/inc.DBInit.php");
include("../inc/inc.ClassSession.php"); include("../inc/inc.ClassSession.php");
include("../inc/inc.ClassUI.php"); include("../inc/inc.ClassUI.php");
include("../inc/inc.ClassEmailNotify.php"); //include("../inc/inc.ClassEmailNotify.php");
include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc"; include $settings->_rootDir . "languages/" . $settings->_language . "/lang.inc";
function _printMessage($heading, $message) { function _printMessage($heading, $message) {
UI::htmlStartPage($heading, "password"); UI::htmlStartPage($heading, "password");
UI::globalBanner(); UI::globalBanner();
UI::pageNavigation($heading); UI::pageNavigation($heading);
UI::contentContainer($message."<p><a href=\"../out/out.Login.php\">" . getMLText("login") . "</a></p>\n"); UI::contentContainer($message."<p><a href=\"../out/out.Login.php\">" . getMLText("login") . "</a></p>\n");
UI::htmlEndPage(); UI::htmlEndPage();
return; return;
} }