fixed footer

This commit is contained in:
Roland Gruber 2019-02-27 19:16:31 +01:00
parent 3587661a9d
commit 3d1ce91759
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
/* /*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2003 - 2018 Roland Gruber Copyright (C) 2003 - 2019 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -167,7 +167,7 @@ if (isset($_POST['add_suff']) || isset($_POST['cancel'])) {
else { else {
// print success message // print success message
StatusMessage("INFO", "", _("All changes were successful.")); StatusMessage("INFO", "", _("All changes were successful."));
include 'main_footer.php'; include '../lib/adminFooter.inc';
} }
} }
else { else {

View File

@ -21,7 +21,7 @@ use \moduleCache;
/* /*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/) This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2004 - 2018 Roland Gruber Copyright (C) 2004 - 2019 Roland Gruber
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -487,7 +487,7 @@ function showMainPage(\LAM\TYPES\ConfiguredType $type, $selectedModules) {
$_SESSION['mass_csv'] = $sampleCSV; $_SESSION['mass_csv'] = $sampleCSV;
echo '</div>'; echo '</div>';
include '../main_footer.php'; include __DIR__ . '/../../lib/adminFooter.inc';
die; die;
} }