Skip to content

Commit ff140bb

Browse files
authored
Merge pull request #62 from Crizz0/update-for-2.0.7
Update for 2.0.7
2 parents 4806a4b + 353ca41 commit ff140bb

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "phpbb-extension",
44
"description": "Provides a pastebin including syntax highlighting",
55
"homepage": "https://www.phpbb.de/community/",
6-
"version": "2.0.6",
7-
"time": "2020-10-04",
6+
"version": "2.0.7",
7+
"time": "2022-05-18",
88
"license": "GPL-2.0-only",
99
"authors": [
1010
{

controller/main.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,6 @@ private function display_pb()
257257
meta_refresh(3, $redirect_url);
258258
trigger_error($message);
259259
}
260-
261-
262260
break;
263261

264262
case 'post':

event/acp_events.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
class acp_events implements EventSubscriberInterface
2121
{
22-
static public function getSubscribedEvents()
22+
public static function getSubscribedEvents()
2323
{
2424
return array(
2525
'core.permissions' => 'add_permissions',

event/base_events.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
*/
2020
class base_events implements EventSubscriberInterface
2121
{
22-
static public function getSubscribedEvents()
22+
public static function getSubscribedEvents()
2323
{
2424
return array(
2525
'core.page_header_after' => 'page_header_after',

0 commit comments

Comments
 (0)