mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/12990] Use protected instead of private
PHPBB3-12990
This commit is contained in:
parent
b18fe1203a
commit
71f78fb8c6
2 changed files with 3 additions and 3 deletions
|
@ -79,7 +79,7 @@ class ucp_notifications
|
|||
}
|
||||
}
|
||||
|
||||
//meta_refresh(3, $this->u_action);
|
||||
meta_refresh(3, $this->u_action);
|
||||
$message = $user->lang['PREFERENCES_UPDATED'] . '<br /><br />' . sprintf($user->lang['RETURN_UCP'], '<a href="' . $this->u_action . '">', '</a>');
|
||||
trigger_error($message);
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ namespace phpbb\db\migration\data\v310;
|
|||
|
||||
class notifications_use_full_name extends \phpbb\db\migration\migration
|
||||
{
|
||||
private $notification_types = array(
|
||||
protected $notification_types = array(
|
||||
'admin_activate_user',
|
||||
'approve_post',
|
||||
'approve_topic',
|
||||
|
@ -35,7 +35,7 @@ class notifications_use_full_name extends \phpbb\db\migration\migration
|
|||
'topic',
|
||||
'topic_in_queue');
|
||||
|
||||
private $notification_methods = array(
|
||||
protected $notification_methods = array(
|
||||
'email',
|
||||
'jabber',
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue