From: pdontthink Date: Wed, 18 Jun 2003 08:04:51 +0000 (+0000) Subject: identities_table and identities_buttons hooks were broken X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=a6c45e38b7ae30f709c314c55f9657a35dab8b10 identities_table and identities_buttons hooks were broken git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@5075 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/src/options_identities.php b/src/options_identities.php index 59b34fba..809210f9 100644 --- a/src/options_identities.php +++ b/src/options_identities.php @@ -327,7 +327,7 @@ function ShowTableInfo($full_name, $email_address, $reply_to, $signature, $post) $return_val .= sti_input( _("Reply To"), 'reply_to', $reply_to, $post, $OtherBG ); $return_val .= sti_textarea( _("Signature"), 'signature', $signature, $post, $OtherBG ); - do_hook('options_identities_table', $OtherBG, $isEmptySection, $post); + $return_val .= concat_hook_function('options_identities_table', array($OtherBG, $isEmptySection, $post)); $return_val .= html_tag( 'tr', '', '', $OtherBG); $return_val .= html_tag( 'td', ' ', 'left' ); $return_val .= html_tag( 'td', '', 'left' ); @@ -345,7 +345,7 @@ function ShowTableInfo($full_name, $email_address, $reply_to, $signature, $post) $return_val .= ''; } - do_hook('options_identities_buttons', $isEmptySection, $post); + $return_val .= concat_hook_function('options_identities_buttons', array($isEmptySection, $post)); $return_val .= ''. html_tag( 'tr', html_tag( 'td', ' ', 'left', '', 'colspan="2"' ));