Cleaned up PHP warnings

This commit is contained in:
jengo 2001-03-10 09:10:49 +00:00
parent 215ad8f011
commit 5e0ab90cb2

View File

@ -19,23 +19,37 @@
include("../header.inc.php"); include("../header.inc.php");
function is_user_admin($owner) { function is_user_admin($owner)
global $phpgw; {
global $phpgw;
$acl = CreateObject('phpgwapi.acl',intval($owner)); $acl = CreateObject('phpgwapi.acl',intval($owner));
$acl_list = $acl->read_repository(); $acl_list = $acl->read_repository();
for($k=0;$k<count($acl_list);$k++) { for ($k=0;$k<count($acl_list);$k++)
if($apps_list[$k]['appname'] == 'admin') return True; {
} if ($apps_list[$k]['appname'] == 'admin')
$memberships = $phpgw->accounts->memberships($owner); {
for($k=0;$k<count($memberships);$k++) { return True;
$apps_list = $acl->get_app_list_for_id('run',1,$memberships[$k]['account_id']); }
while($apps = each($apps_list)) { }
if($apps[1] == 'admin') return True; $memberships = $phpgw->accounts->memberships($owner);
} for ($k=0;$k<count($memberships);$k++)
} {
return False; $apps_list = $acl->get_app_list_for_id('run',1,$memberships[$k]['account_id']);
}
if (is_array($apps_list))
{
while($apps = each($apps_list))
{
if($apps[1] == 'admin')
{
return True;
}
}
}
}
return False;
}
if (! $submit) { if (! $submit) {
if ($phpgw_info["server"]["useframes"] != "never") { if ($phpgw_info["server"]["useframes"] != "never") {