diff options
| author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-01 19:39:03 -0700 |
|---|---|---|
| committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-11-01 19:39:03 -0700 |
| commit | 000bbfd5b342627b103d7c460864d4dad0dc8134 (patch) | |
| tree | 306e5423dba192183362b305c8495d3ee99f6f46 /phpBB | |
| parent | 1f248dab6f9413a67f08e008b36c9fc64489d1ce (diff) | |
| parent | a1524a69d657ae3fc66dfe72428d15ebbbf93f66 (diff) | |
| download | forums-000bbfd5b342627b103d7c460864d4dad0dc8134.tar forums-000bbfd5b342627b103d7c460864d4dad0dc8134.tar.gz forums-000bbfd5b342627b103d7c460864d4dad0dc8134.tar.bz2 forums-000bbfd5b342627b103d7c460864d4dad0dc8134.tar.xz forums-000bbfd5b342627b103d7c460864d4dad0dc8134.zip | |
Merge pull request #1028 from bantu/ticket/11099
[ticket/11099] Mark acp_ban::display_ban_options() as static.
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/includes/acp/acp_ban.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_ban.php b/phpBB/includes/acp/acp_ban.php index d275c7f10c..3ed9c225f5 100644 --- a/phpBB/includes/acp/acp_ban.php +++ b/phpBB/includes/acp/acp_ban.php @@ -97,7 +97,7 @@ class acp_ban break; } - $this->display_ban_options($mode); + self::display_ban_options($mode); $template->assign_vars(array( 'L_TITLE' => $this->page_title, @@ -118,7 +118,7 @@ class acp_ban /** * Display ban options */ - function display_ban_options($mode) + static public function display_ban_options($mode) { global $user, $db, $template; |
