Imagick's clonse() depreciated as of 3.1.0b1; use clone PHP keyword and bump minimum PHP version to 5.2.5
This commit is contained in:
parent
21b35094dd
commit
9bb0e1984d
@ -4,7 +4,7 @@
|
||||
Tinyboard is an imageboard software package written in PHP. It aims to maintain a stable, fast, clean, robust and user-friendly engine for imageboards. You can contact the development team or learn more at [tinyboard.org](http://tinyboard.org/) or on IRC at [irc.datnode.net #tinyboard](irc://irc.datnode.net/tinyboard).
|
||||
|
||||
## Requirements
|
||||
1. PHP >= 5.2.0
|
||||
1. PHP >= 5.2.5
|
||||
2. [mbstring](http://www.php.net/manual/en/mbstring.installation.php) (--enable-mbstring)
|
||||
3. [PHP-GD](http://php.net/manual/en/book.image.php)
|
||||
4. [PHP-PDO](http://php.net/manual/en/book.pdo.php) with appropriate <del>[driver for your database](http://www.php.net/manual/en/pdo.drivers.php)</del> (only MySQL is supported at the moment)
|
||||
|
@ -163,7 +163,7 @@
|
||||
return $this->image->destroy();
|
||||
}
|
||||
public function resize() {
|
||||
$this->image = $this->original->clone();
|
||||
$this->image = clone $this->original;
|
||||
|
||||
$this->image->scaleImage($this->width, $this->height, false);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user