[ postfixadmin-Bugs-3161493 ] create mailbox has an error
Brought to you by:
christian_boltz,
gingerdog
|
From: SourceForge.net <no...@so...> - 2011-01-19 07:13:45
|
Bugs item #3161493, was opened at 2011-01-19 07:11 Message generated for change (Settings changed) made by bilalalig You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3161493&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Core Group: v2.3.2 Status: Open Resolution: None >Priority: 9 Private: No Submitted By: Bilal Ahmed (bilalalig) Assigned to: Nobody/Anonymous (nobody) Summary: create mailbox has an error Initial Comment: Dear Sir, create-mailbox.php has an error at line no 162 that has a if statement if($CONF['maildir_name_hook'] != 'NO' && function_exists($CONF['maildir_name_hook'])) { $hook_func = $CONF['maildir_name_hook']; $maildir = $hook_func ($fDomain, $fUsername); } that should be changed as below if($CONF['maildir_name_hook'] != 'NO' && function_exists('maildir_name_hook')) { $maildir = call_user_func('maildir_name_hook', $fDomain, $fUsername); } Thanks Bilal Ahmed ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=3161493&group_id=191583 |