From: Michael M Slusarz Date: Wed, 19 Aug 2009 22:36:34 +0000 (-0600) Subject: Bug #8475: Fix parameter order X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=2d51601a15cab64f85c13ae1d24cc2601ff70bc3;p=horde.git Bug #8475: Fix parameter order --- diff --git a/framework/Core/lib/Horde/Registry.php b/framework/Core/lib/Horde/Registry.php index 59b764193..6384126be 100644 --- a/framework/Core/lib/Horde/Registry.php +++ b/framework/Core/lib/Horde/Registry.php @@ -905,7 +905,7 @@ class Horde_Registry if ($checkPerms) { $tasks = Horde_LoginTasks::singleton($app); if (!empty($options['logintasks'])) { - $tasks->runTasks(Horde::selfUrl(true, true, true)); + $tasks->runTasks(false, Horde::selfUrl(true, true, true)); } }