added some acl check into change password

This commit is contained in:
seek3r 2000-12-13 10:26:44 +00:00
parent c92d4c5e11
commit 22511e1420

View File

@ -17,6 +17,11 @@
$phpgw_info["flags"]["currentapp"] = "preferences";
include("../header.inc.php");
if (!$phpgw->acl->check("changepassword", 1)){
Header("Location: index.php");
exit;
}
if (! $submit) {
$phpgw->common->phpgw_header();
$phpgw->common->navbar();