<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: ZFDebug and Doctrine&#160;ORM</title>
	<atom:link href="http://danceric.net/2009/06/06/zfdebug-and-doctrine-orm/feed/" rel="self" type="application/rss+xml" />
	<link>http://danceric.net/2009/06/06/zfdebug-and-doctrine-orm/</link>
	<description>Web Developer in Gatineau/Ottawa</description>
	<lastBuildDate>Fri, 22 Jul 2011 17:17:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Alex Gemmell</title>
		<link>http://danceric.net/2009/06/06/zfdebug-and-doctrine-orm/comment-page-1/#comment-299</link>
		<dc:creator>Alex Gemmell</dc:creator>
		<pubDate>Fri, 04 Dec 2009 17:01:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.danceric.net/?p=477#comment-299</guid>
		<description>&lt;p&gt;Works for me which is great, thank you!  I may tinker with it to be a bit more descriptive :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Works for me which is great, thank you!  I may tinker with it to be a bit more descriptive <img src='http://danceric.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>By: Routy Design &#187; Integrating ZFDebug and Doctrine Query Profiling into your Zend Application</title>
		<link>http://danceric.net/2009/06/06/zfdebug-and-doctrine-orm/comment-page-1/#comment-188</link>
		<dc:creator>Routy Design &#187; Integrating ZFDebug and Doctrine Query Profiling into your Zend Application</dc:creator>
		<pubDate>Tue, 03 Nov 2009 16:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.danceric.net/?p=477#comment-188</guid>
		<description>&lt;p&gt;[...] http://www.danceric.net/2009/06/06/zfdebug-and-doctrine-orm/ and download his latest version of the doctrine ZFDebug [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.danceric.net/2009/06/06/zfdebug-and-doctrine-orm/" rel="nofollow">http://www.danceric.net/2009/06/06/zfdebug-and-doctrine-orm/</a> and download his latest version of the doctrine ZFDebug [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: apit</title>
		<link>http://danceric.net/2009/06/06/zfdebug-and-doctrine-orm/comment-page-1/#comment-32</link>
		<dc:creator>apit</dc:creator>
		<pubDate>Sat, 01 Aug 2009 17:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.danceric.net/?p=477#comment-32</guid>
		<description>&lt;p&gt;hi, thx for your plugin. works great :).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hi, thx for your plugin. works great <img src='http://danceric.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg</title>
		<link>http://danceric.net/2009/06/06/zfdebug-and-doctrine-orm/comment-page-1/#comment-29</link>
		<dc:creator>Oleg</dc:creator>
		<pubDate>Fri, 24 Jul 2009 10:03:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.danceric.net/?p=477#comment-29</guid>
		<description>&lt;p&gt;Whoops, some code here also became html. Please fix it! And thanks for this plugin!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Whoops, some code here also became html. Please fix it! And thanks for this plugin!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg</title>
		<link>http://danceric.net/2009/06/06/zfdebug-and-doctrine-orm/comment-page-1/#comment-28</link>
		<dc:creator>Oleg</dc:creator>
		<pubDate>Fri, 24 Jul 2009 10:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.danceric.net/?p=477#comment-28</guid>
		<description>&lt;p&gt;Hi, Dan!&lt;/p&gt;

&lt;p&gt;There is htmlspecialchars() missing for bindings list that cause to output direct html in case it appears in binding.&lt;/p&gt;

&lt;p&gt;So I created a patch for it:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;--- /zfdebugdoctrine/library/Danceric/Controller/Plugin/Debug/Plugin/Doctrine.php   Пт июл 24 12:51:05 2009
+++ /danceric/zfdebugdoctrine/library/Danceric/Controller/Plugin/Debug/Plugin/Doctrine.php  Пт июл 24 12:39:28 2009
@@ -103,8 +103,14 @@
                    $html .= $info;

                    $params = $event-&gt;getParams();
-                   if(!empty($params)) {
-                       $html .= &#039;&lt;ul&gt;&lt;em&gt;bindings:&lt;/em&gt; &lt;li&gt;&#039;. implode(&#039;&lt;/li&gt;&lt;li&gt;&#039;, $params) . &#039;&lt;/li&gt;&lt;/ul&gt;&#039;;
+                   if(!empty($params))
+                   {
+                       $html .= &#039;&lt;ul&gt;&lt;em&gt;bindings:&lt;/em&gt;&#039;;
+                       foreach( $params as $param )
+                       {
+                           $html .= &#039;&lt;li&gt;&#039; . htmlspecialchars( $param ) . &#039;&lt;/li&gt;&#039;;
+                       }
+                       $html .= &#039;&lt;/ul&gt;&#039;;
                    }
                    $html .= &#039;&lt;/li&gt;&#039;;
                }
&lt;/code&gt;&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>Hi, Dan!</p>

<p>There is htmlspecialchars() missing for bindings list that cause to output direct html in case it appears in binding.</p>

<p>So I created a patch for it:</p>

<pre><code>--- /zfdebugdoctrine/library/Danceric/Controller/Plugin/Debug/Plugin/Doctrine.php   Пт июл 24 12:51:05 2009
+++ /danceric/zfdebugdoctrine/library/Danceric/Controller/Plugin/Debug/Plugin/Doctrine.php  Пт июл 24 12:39:28 2009
@@ -103,8 +103,14 @@
                    $html .= $info;

                    $params = $event-&amp;gt;getParams();
-                   if(!empty($params)) {
-                       $html .= '&lt;ul&gt;&lt;em&gt;bindings:&lt;/em&gt; &lt;li&gt;'. implode('&lt;/li&gt;&lt;li&gt;', $params) . '&lt;/li&gt;&lt;/ul&gt;';
+                   if(!empty($params))
+                   {
+                       $html .= '&lt;ul&gt;&lt;em&gt;bindings:&lt;/em&gt;';
+                       foreach( $params as $param )
+                       {
+                           $html .= '&lt;li&gt;' . htmlspecialchars( $param ) . '&lt;/li&gt;';
+                       }
+                       $html .= '&lt;/ul&gt;';
                    }
                    $html .= '&lt;/li&gt;';
                }
</code></pre>]]></content:encoded>
	</item>
</channel>
</rss>

