Skip to content

Commit

Permalink
5.1.0
Browse files Browse the repository at this point in the history
PHP 8.2 compatibility
  • Loading branch information
conseilgouz committed Mar 7, 2023
1 parent 9fe8703 commit 4eac02a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
12 changes: 10 additions & 2 deletions autoreadmore.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,16 @@
use Joomla\CMS\Language\Text;
use ConseilGouz\Plugin\Content\Autoreadmore\Helper\AutoReadMoreString;

class PlgContentAutoReadMore extends CMSPlugin
{
class PlgContentAutoReadMore extends CMSPlugin {
protected $plg_name;
protected $plg_type;
protected $plg_full_name;
protected $plg_path_relative;
protected $plg_path;
protected $params_content;
protected $fulltext_loaded;
protected $trimming_dots;
protected $alternative_readmore;
public function __construct(&$subject, $config)
{
parent::__construct($subject, $config);
Expand Down
4 changes: 2 additions & 2 deletions autoreadmore.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<extension version="3.10" type="plugin" group="content" method="upgrade">
<name>PLG_CONTENT_AUTOREADMORE_TITLE</name>
<creationDate>2023-01-07</creationDate>
<creationDate>2023-03-07</creationDate>
<copyright>Copyright (C) 2023 Conseilgouz All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL</license>
<author>ConseilGouz</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>https://www.conseilgouz.com</authorUrl>
<version>5.0.9</version>
<version>5.1.0</version>
<description>PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE</description>
<namespace path="src">ConseilGouz\Plugin\Content\Autoreadmore</namespace>
<files>
Expand Down
11 changes: 11 additions & 0 deletions plg_autoreadmore_changelog.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
<changelogs>
<changelog>
<element>autoreadmore</element>
<type>plugin</type>
<version>5.1.0</version>
<note>
<item>07/03/2023</item>
</note>
<fix>
<item>PHP 8.2 compatibility</item>
</fix>
</changelog>
<changelog>
<element>autoreadmore</element>
<type>plugin</type>
Expand Down

0 comments on commit 4eac02a

Please sign in to comment.