Skip to content

Commit

Permalink
Update to 5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
denysdesign committed Nov 21, 2022
1 parent ab2cc72 commit ea7740b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
basedir=".">

<property name="VERSION"
value="5.2" />
value="5.4" />
<property name="build"
value="build" />
<property name="temp"
Expand Down
2 changes: 1 addition & 1 deletion packages/lib_juimage/juimage.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<author>Denys Nosov</author>
<authorEmail>[email protected]</authorEmail>
<authorUrl>https://joomla-ua.org</authorUrl>
<license>http://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
<license>https://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
<copyright>(C) 2006-2022 Joomla! Ukraine. All rights reserved.</copyright>
<version>@version@</version>
<packager>Joomla! Ukraine</packager>
Expand Down
2 changes: 1 addition & 1 deletion packages/plg_system_juimage/juimage.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<creationDate>@date@</creationDate>
<authorEmail>[email protected]</authorEmail>
<authorUrl>https://joomla-ua.org</authorUrl>
<license>http://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
<license>https://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
<copyright>(C) 2019-2022 Joomla! Ukraine. All rights reserved.</copyright>
<version>@version@</version>
<description>Register JUImage library.</description>
Expand Down
6 changes: 3 additions & 3 deletions src/classes/phpthumb/phpthumb.gif.php
Original file line number Diff line number Diff line change
Expand Up @@ -1093,9 +1093,9 @@ public function getGD_PixelPlotterVersion()
for ($i = 0; $i < $NumColorsInPal; $i++) {
$ThisImageColor[$i] = imagecolorallocate(
$PlottingIMG,
ord($pal{($i * 3) + 0}),
ord($pal{($i * 3) + 1}),
ord($pal{($i * 3) + 2}));
ord($pal[($i * 3) + 0]),
ord($pal[($i * 3) + 1]),
ord($pal[($i * 3) + 2]));
}

// PREPARE BITMAP BITS
Expand Down

0 comments on commit ea7740b

Please sign in to comment.