Skip to content

Commit

Permalink
Update phpThumb to v1.7.22-202312071641 (#16506)
Browse files Browse the repository at this point in the history
### What does it do?
Updates phpThumb to v1.7.22-202312071641

### Why is it needed?
Fixes the issue with thumbnails not being generated when running on PHP
7.4 (or earlier).

### How to test
Make sure thumbnails are being generated in the media browser when
running on PHP 7.4.

### Related issue(s)/PR(s)
Resolves #16468 for the 2.x branch
  • Loading branch information
opengeek authored Feb 27, 2024
1 parent f834ecb commit f21a43a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/model/phpthumb/phpthumb.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class phpthumb {
public $issafemode = null;
public $php_memory_limit = null;

public $phpthumb_version = '1.7.21-202307141720';
public $phpthumb_version = '1.7.22-202312071641';

//////////////////////////////////////////////////////////////////////

Expand Down Expand Up @@ -314,7 +314,7 @@ public function __destruct() {
$this->purgeTempFiles();
}

public function __set(string $name, mixed $value): void {
public function __set(string $name, $value): void {
}

// public:
Expand Down

0 comments on commit f21a43a

Please sign in to comment.