Skip to content

Commit

Permalink
Bump version, fix php requirements and release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Elsensee committed Dec 21, 2020
1 parent 7699b5d commit e9977a8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"type": "phpbb-extension",
"description": "An extension which allows users to set their own posts per page settings.",
"homepage": "https://github.com/Elsensee/phpbb-ext-posts-per-page",
"version": "1.1.1",
"time": "2018-09-27",
"version": "1.2.0",
"time": "2020-12-21",
"license": "GPL-2.0-only",
"authors": [
{
Expand Down
4 changes: 2 additions & 2 deletions event/admin_listener.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
*
* @package Individual posts per page
* @copyright (c) 2015-2018 Oliver Schramm
* @copyright (c) 2015-2020 Oliver Schramm
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
Expand Down Expand Up @@ -106,7 +106,7 @@ public function add_configuration($event)
}

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

$event['display_vars'] = $vars;
}
Expand Down
2 changes: 1 addition & 1 deletion event/listener.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
*
* @package Individual posts per page
* @copyright (c) 2015-2018 Oliver Schramm
* @copyright (c) 2015-2020 Oliver Schramm
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
Expand Down
2 changes: 1 addition & 1 deletion migrations/release_1_2_0.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
*
* @package Individual posts per page
* @copyright (c) 2015 Oliver Schramm
* @copyright (c) 2020 Oliver Schramm
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
Expand Down

0 comments on commit e9977a8

Please sign in to comment.