From ab7cc4b500e0cb37b9f9a9f3f19dae89f73bf76c Mon Sep 17 00:00:00 2001 From: Alan Jack Pippin Date: Mon, 11 Jun 2007 20:36:30 -0600 Subject: [PATCH] Additional bug fixes --- ItemAddEmbedVideo.inc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ItemAddEmbedVideo.inc b/ItemAddEmbedVideo.inc index c0d355d..ba84786 100644 --- a/ItemAddEmbedVideo.inc +++ b/ItemAddEmbedVideo.inc @@ -122,7 +122,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { } - if($debugOutput) { + if(!strcmp($debugOutput,"true")) { print "$xml"; } @@ -241,7 +241,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { * This reference will be embedded using the G2 internal player, * or an external player if provided by the user. */ - if(!$useInternalFlvPlayer) { + if(!strcmp($useInternalFlvPlayer,"false")) { /* * The user has indicated they want to use an external flv player @@ -334,7 +334,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $tmpFile = $platform->tempnam($tmpDir, 'add'); $tmpFile.= ".jpg"; - if($debugOutput) { + if(!strcmp($debugOutput,"true")) { print "thumbnail: $thumbnail
"; } @@ -357,7 +357,7 @@ class ItemAddEmbedVideo extends ItemAddPlugin { $fileName = preg_replace("/&#\d+;/","",$fileName); /* General debug output */ - if($debugOutput) { + if(!strcmp($debugOutput,"true")) { print "

"; print "\n".$summary."

"; print "

$description

"; -- 2.34.1