From: Matt Selsky Date: Wed, 25 Feb 2009 13:29:37 +0000 (-0500) Subject: Bug #8030: Fix syntax error. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=cfe6659031c3bbe37ca189e07e47edb3389c807f;p=horde.git Bug #8030: Fix syntax error. --- diff --git a/ingo/lib/Ingo.php b/ingo/lib/Ingo.php index 46a7ca2cd..181f6d910 100644 --- a/ingo/lib/Ingo.php +++ b/ingo/lib/Ingo.php @@ -97,7 +97,7 @@ class Ingo static public function createFolder($folder) { return $GLOBALS['registry']->hasMethod('mail/createFolder') - ? $GLOBALS['registry']->call('mail/createFolder', array('folder' => String::convertCharset($folder, NLS::getCharset(), 'UTF7-IMAP'))); + ? $GLOBALS['registry']->call('mail/createFolder', array('folder' => String::convertCharset($folder, NLS::getCharset(), 'UTF7-IMAP'))) : false; }