@-silence an Imagick call that causes a warning in PHP 5.4.

props DH-Shredder. fixes #24539.

git-svn-id: https://develop.svn.wordpress.org/trunk@24568 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2013-07-05 18:43:45 +00:00
parent 5312ae444b
commit 101031bcf4
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class WP_Image_Editor_Imagick extends WP_Image_Editor {
return false;
try {
return ( (bool) Imagick::queryFormats( $imagick_extension ) );
return ( (bool) @Imagick::queryFormats( $imagick_extension ) );
}
catch ( Exception $e ) {
return false;