fix wrong variable

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2014-02-20 11:18:46 +01:00
parent b191b67f21
commit c59fe0e4ad

View File

@@ -85,9 +85,9 @@ if ($page == 'overview') {
// check whether this is our default config // check whether this is our default config
if ((Settings::Get('system.mod_fcgid') == '1' if ((Settings::Get('system.mod_fcgid') == '1'
&& Settings::Get('system.mod_fcgid_defaultini') == $id) && Settings::Get('system.mod_fcgid_defaultini') == $row['id'])
|| (Settings::Get('phpfpm.enabled') == '1' || (Settings::Get('phpfpm.enabled') == '1'
&& Settings::Get('phpfpm.defaultini') == $id) && Settings::Get('phpfpm.defaultini') == $row['id'])
) { ) {
$row['description'] = '<b>'.$row['description'].'</b>'; $row['description'] = '<b>'.$row['description'].'</b>';
} }