summaryrefslogtreecommitdiff
path: root/it.class
diff options
context:
space:
mode:
authorChristian Schneider2009-07-09 22:45:01 +0000
committerChristian Schneider2009-07-09 22:45:01 +0000
commitb4802636815a2ed0cdf8f2f567f232f23dfa8192 (patch)
tree81cf3373b0ef0221e79b66e31a1dcddf0b4e136a /it.class
parent1fbdfc360a9e2867e60818d356c29ee6ce78e0cb (diff)
downloaditools-b4802636815a2ed0cdf8f2f567f232f23dfa8192.tar.gz
itools-b4802636815a2ed0cdf8f2f567f232f23dfa8192.tar.bz2
itools-b4802636815a2ed0cdf8f2f567f232f23dfa8192.zip
Fix warning on PHP 5.3 when passing non-object to get_class()
Diffstat (limited to 'it.class')
-rw-r--r--it.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it.class b/it.class
index 7a13bbd..32b6a13 100644
--- a/it.class
+++ b/it.class
@@ -485,7 +485,7 @@ function imageconvert($p)
$result = false;
$imagetype = @exif_imagetype($p['in']);
- if (!$imagetype && get_class(it_xml::create(@fopen($p['in'], "r"), array('prefix' => "_imageconvert_"))) == "_imageconvert_svg")
+ if (!$imagetype && @get_class(it_xml::create(fopen($p['in'], "r"), array('prefix' => "_imageconvert_"))) == "_imageconvert_svg")
{
# Accept SVG files if they are valid XML and root tag is svg
$type = "svg";