Skip to content

Commit e9977a8

Browse files
committed
Bump version, fix php requirements and release 1.2.0
1 parent 7699b5d commit e9977a8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"type": "phpbb-extension",
44
"description": "An extension which allows users to set their own posts per page settings.",
55
"homepage": "https://github.com/Elsensee/phpbb-ext-posts-per-page",
6-
"version": "1.1.1",
7-
"time": "2018-09-27",
6+
"version": "1.2.0",
7+
"time": "2020-12-21",
88
"license": "GPL-2.0-only",
99
"authors": [
1010
{

event/admin_listener.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
*
44
* @package Individual posts per page
5-
* @copyright (c) 2015-2018 Oliver Schramm
5+
* @copyright (c) 2015-2020 Oliver Schramm
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*
88
*/
@@ -106,7 +106,7 @@ public function add_configuration($event)
106106
}
107107

108108
// Insert our own_vars array right after posts_per_page to let them appear right there.
109-
$vars['vars'] = phpbb_insert_config_array($vars['vars'], $own_vars, ['after' => $this->acp_position]);
109+
$vars['vars'] = phpbb_insert_config_array($vars['vars'], $own_vars, array('after' => $this->acp_position));
110110

111111
$event['display_vars'] = $vars;
112112
}

event/listener.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
*
44
* @package Individual posts per page
5-
* @copyright (c) 2015-2018 Oliver Schramm
5+
* @copyright (c) 2015-2020 Oliver Schramm
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*
88
*/

migrations/release_1_2_0.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
*
44
* @package Individual posts per page
5-
* @copyright (c) 2015 Oliver Schramm
5+
* @copyright (c) 2020 Oliver Schramm
66
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
77
*
88
*/

0 commit comments

Comments
 (0)