From cfe6659031c3bbe37ca189e07e47edb3389c807f Mon Sep 17 00:00:00 2001 From: Matt Selsky Date: Wed, 25 Feb 2009 08:29:37 -0500 Subject: [PATCH] Bug #8030: Fix syntax error. --- ingo/lib/Ingo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.11.0