From: Chuck Hagenbuch Date: Sat, 1 Aug 2009 02:18:30 +0000 (-0400) Subject: fix parse error X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ade153ffff6e074a3d52ff1e577ae53440cf2efc;p=horde.git fix parse error --- diff --git a/nag/lib/Nag.php b/nag/lib/Nag.php index 8a4142e51..4764a988c 100644 --- a/nag/lib/Nag.php +++ b/nag/lib/Nag.php @@ -690,7 +690,7 @@ class Nag $menu->add($print_link, _("_Print"), 'print.png', $registry->getImageDir('horde'), '_blank', Horde::popupJs($print_link, array('urlencode' => true)) . 'return false;', '__noselection'); } - return ($returnType == 'object') $menu : $menu->render(); + return ($returnType == 'object') ? $menu : $menu->render(); } function status()