[Piwik-svn] r349 - trunk/modules/ViewDataTable

svnmaster at piwik.org svnmaster at piwik.org
Mon Mar 10 02:13:46 CET 2008


Author: matt
Date: 2008-03-10 02:13:45 +0100 (Mon, 10 Mar 2008)
New Revision: 349

Modified:
   trunk/modules/ViewDataTable/Graph.php
Log:
fixing bug in graph embed code on IE when debugging is ON

Modified: trunk/modules/ViewDataTable/Graph.php
===================================================================
--- trunk/modules/ViewDataTable/Graph.php	2008-03-10 01:06:56 UTC (rev 348)
+++ trunk/modules/ViewDataTable/Graph.php	2008-03-10 01:13:45 UTC (rev 349)
@@ -112,14 +112,13 @@
 				';
 		}
 		$urlGraph = $pathToLibraryOpenChart."open-flash-chart.swf?data=" . $url;
-		$this->codeEmbed = "";
 		
-		$return .= '
-			<div><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' . $width . '" height="' . $height . '" id="'. $obj_id .'" >
-			<param name="movie" value="'.$urlGraph.'" />
-			<embed src="$urlGraph" quality="high" bgcolor="#FFFFFF" width="'. $width .'" height="'. $height .'" name="open-flash-chart" type="application/x-shockwave-flash" id="'. $obj_id .'" />
-			</object></div>';
-	
+		$this->codeEmbed .= "<div><object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0' width='" . $width . "' height='" . $height . "' id='". $obj_id ."' >".
+							"<param name='movie' value='".$urlGraph."' />".
+							"<embed src='$urlGraph' quality='high' bgcolor='#FFFFFF' width='". $width ."' height='". $height ."' name='open-flash-chart' type='application/x-shockwave-flash' id='". $obj_id ."' />".
+							"</object></div>";
+		$return .= $this->codeEmbed;
+		
 		if ( $use_swfobject ) {
 			$return .= '</noscript>';
 		}



More information about the Piwik-svn mailing list