Skip to content

Commit

Permalink
3.2.19 - Fix php 8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Naguissa committed Oct 8, 2021
1 parent ebc85a6 commit d698c32
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/acp/acp_thanks_info.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function module() {
return array(
'filename' => '\gfksx\ThanksForPosts\acp\acp_thanks_module',
'title' => 'ACP_THANKS_SETTINGS',
'version' => '3.2.18',
'version' => '3.2.19',
'modes' => array(
'thanks' => array('title' => 'ACP_THANKS_SETTINGS', 'auth' => 'ext_gfksx/ThanksForPosts && acl_a_board', 'cat' => array('ACP_THANKS')),
),
Expand Down
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/acp/acp_thanks_refresh_info.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function module() {
return array(
'filename' => '\gfksx\ThanksForPosts\acp\acp_thanks_refresh_module',
'title' => 'ACP_THANKS_REFRESH',
'version' => '3.2.18',
'version' => '3.2.19',
'modes' => array(
'thanks' => array('title' => 'ACP_THANKS_REFRESH', 'auth' => 'ext_gfksx/ThanksForPosts && acl_a_board', 'cat' => array('ACP_THANKS')),
),
Expand Down
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/acp/acp_thanks_reput_info.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function module() {
return array(
'filename' => '\gfksx\ThanksForPosts\acp\acp_thanks_reput_module',
'title' => 'ACP_THANKS_REPUT_SETTINGS',
'version' => '3.2.18',
'version' => '3.2.19',
'modes' => array(
'thanks' => array('title' => 'ACP_THANKS_REPUT_SETTINGS', 'auth' => 'ext_gfksx/ThanksForPosts && acl_a_board', 'cat' => array('ACP_THANKS')),
),
Expand Down
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/acp/acp_thanks_truncate_info.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function module() {
return array(
'filename' => '\gfksx\ThanksForPosts\acp\acp_thanks_truncate_module',
'title' => 'ACP_THANKS_TRUNCATE',
'version' => '3.2.18',
'version' => '3.2.19',
'modes' => array(
'thanks' => array('title' => 'ACP_THANKS_TRUNCATE', 'auth' => 'ext_gfksx/ThanksForPosts && acl_a_board', 'cat' => array('ACP_THANKS')),
),
Expand Down
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "phpbb-extension",
"description": "Adds the ability to thank the author (thanks to cancel), and use the rating system posts/topics/forums based on the issued of thanks.",
"homepage": "https://www.foroelectro.net",
"version": "3.2.18",
"version": "3.2.19",
"time": "2019-05-31",
"license": "GPL-2.0",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/core/helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public function get_thanks($post_id)

if (!empty($user_list))
{
$return = implode($user_list, ' • ');
$return = implode(' • ', $user_list);
}

if ($further_thanks > 0)
Expand Down
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/language/es/thanks_mod.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
'RATING_TOPIC' => 'Tema',
'THANK' => 'vez',
'THANK_FROM' => 'de',
'THANK_TEXT_1' => 'Estos usuarios agradecierón al autor ',
'THANK_TEXT_1' => 'Estos usuarios agradecieron al autor ',
'THANK_TEXT_2' => array(
1 => ' por el mensaje: ',
2 => ' por el mensaje (total %d):'
Expand Down
2 changes: 1 addition & 1 deletion gfksx/ThanksForPosts/language/es_x_tu/thanks_mod.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
'RATING_TOPIC' => 'Tema',
'THANK' => 'vez',
'THANK_FROM' => 'de',
'THANK_TEXT_1' => 'Estos usuarios agradecierón al autor ',
'THANK_TEXT_1' => 'Estos usuarios agradecieron al autor ',
'THANK_TEXT_2' => array(
1 => ' por el mensaje: ',
2 => ' por el mensaje (total %d):'
Expand Down

0 comments on commit d698c32

Please sign in to comment.