5.9.208 (2013-03-15)

- objclone fuction was patched to support old imagick extensions.
- tcpdf_parser was improved to support Cross-Reference Streams and large streams.
This commit is contained in:
Nicola Asuni 2013-03-15 22:46:20 +00:00
parent d63cf8c9e5
commit 3e49de8be6
1 changed files with 3 additions and 3 deletions

View File

@ -27048,9 +27048,9 @@ Putting 1 is equivalent to putting 0 and calling Ln() just after. Default value:
* @since 4.5.029 (2009-03-19)
*/
public function objclone($object) {
if (($object instanceof Imagick) AND (version_compare('3.1.0', phpversion('imagick')) === 1)) {
// imagick extension is older than 3.1.0 version
return $object->clone();
if (($object instanceof Imagick) AND (version_compare(phpversion('imagick'), '3.0.1') !== 1)) {
// on the versions after 3.0.1 the clone() method was deprecated in favour of clone keyword
return @$object->clone();
}
return @clone($object);
}