mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 11:23:54 +01:00
killed a few warnings for error_reporting = E_ALL
This commit is contained in:
parent
28ea28e013
commit
4ab9783482
@ -415,7 +415,7 @@
|
|||||||
$checks = implode(', ',$checks);
|
$checks = implode(', ',$checks);
|
||||||
|
|
||||||
$icon = $passed_icon;
|
$icon = $passed_icon;
|
||||||
if (($msg = $args['msg']))
|
if (isset($args['msg']) && ($msg = $args['msg']))
|
||||||
{
|
{
|
||||||
$msg .= ': '.$perms."<br />\n";
|
$msg .= ': '.$perms."<br />\n";
|
||||||
}
|
}
|
||||||
@ -423,7 +423,7 @@
|
|||||||
{
|
{
|
||||||
$msg = lang('Checking file-permissions of %1 for %2 %3: %4',$rel_name,$check_not,$checks,$perms)."<br />\n";
|
$msg = lang('Checking file-permissions of %1 for %2 %3: %4',$rel_name,$check_not,$checks,$perms)."<br />\n";
|
||||||
}
|
}
|
||||||
if ($args['error'])
|
if (isset($args['error']) && $args['error'])
|
||||||
{
|
{
|
||||||
$extra_error_msg = "<br />\n".$args['error'];
|
$extra_error_msg = "<br />\n".$args['error'];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user