mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/14630] Change event name and fix capitalization
PHPBB3-14630
This commit is contained in:
parent
c7bbcd7b84
commit
06507f9fa6
1 changed files with 3 additions and 3 deletions
|
@ -752,9 +752,9 @@ function compose_pm($id, $mode, $action, $user_folders = array())
|
|||
$enable_sig = (!$config['allow_sig'] ||!$config['allow_sig_pm']) ? false : ((isset($_POST['attach_sig'])) ? true : false);
|
||||
|
||||
/**
|
||||
* Modify Private message
|
||||
* Modify private message
|
||||
*
|
||||
* @event core.ucp_pm_compose_modify_private_message
|
||||
* @event core.ucp_pm_compose_modify_submit_before
|
||||
* @var bool enable_bbcode Whether or not bbcode is enabled
|
||||
* @var bool enable_smilies Whether or not smilies are enabled
|
||||
* @var bool enable_urls Whether or not urls are enabled
|
||||
|
@ -777,7 +777,7 @@ function compose_pm($id, $mode, $action, $user_folders = array())
|
|||
'preview',
|
||||
'error',
|
||||
);
|
||||
extract($phpbb_dispatcher->trigger_event('core.ucp_pm_compose_modify_private_message', compact($vars)));
|
||||
extract($phpbb_dispatcher->trigger_event('core.ucp_pm_compose_modify_submit_before', compact($vars)));
|
||||
|
||||
if ($submit)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue