<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for westi on wordpress</title>
	<atom:link href="http://westi.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://westi.wordpress.com</link>
	<description>the often forgotten diary of a wordpress developer</description>
	<lastBuildDate>Sun, 29 Jan 2012 11:14:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on Tracing things back to where they came from by Peter Westwood</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14183</link>
		<dc:creator><![CDATA[Peter Westwood]]></dc:creator>
		<pubDate>Sun, 29 Jan 2012 11:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14183</guid>
		<description><![CDATA[Nice.

With the development version of the Debug Bar you will get the simple backtrace for Deprecated function calls / includes too. Of course this only catches the ones on pages you interact with as a (Super) Admin user.  Being able to find these more easily was one of the reasons this came about :)]]></description>
		<content:encoded><![CDATA[<p>Nice.</p>
<p>With the development version of the Debug Bar you will get the simple backtrace for Deprecated function calls / includes too. Of course this only catches the ones on pages you interact with as a (Super) Admin user.  Being able to find these more easily was one of the reasons this came about <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracing things back to where they came from by Luke Gedeon</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14182</link>
		<dc:creator><![CDATA[Luke Gedeon]]></dc:creator>
		<pubDate>Sun, 29 Jan 2012 05:38:59 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14182</guid>
		<description><![CDATA[I add backtrace to deprecation notice filters in my functions.php so I can find when plugins are using deprecated stuff. Needed because notices only tell you where in the core code the bad arg/func happened, but not the plugin that called the core code.

Let&#039;s see if this sample code will paste:

function plugin_backtrace() {
	var_dump(debug_backtrace());
}

add_action( &#039;deprecated_argument_run&#039;, &#039;plugin_backtrace&#039; );
add_action( &#039;deprecated_function_run&#039;, &#039;plugin_backtrace&#039; );]]></description>
		<content:encoded><![CDATA[<p>I add backtrace to deprecation notice filters in my functions.php so I can find when plugins are using deprecated stuff. Needed because notices only tell you where in the core code the bad arg/func happened, but not the plugin that called the core code.</p>
<p>Let&#8217;s see if this sample code will paste:</p>
<p>function plugin_backtrace() {<br />
	var_dump(debug_backtrace());<br />
}</p>
<p>add_action( &#8216;deprecated_argument_run&#8217;, &#8216;plugin_backtrace&#8217; );<br />
add_action( &#8216;deprecated_function_run&#8217;, &#8216;plugin_backtrace&#8217; );</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracing things back to where they came from by Stephane Daury</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14179</link>
		<dc:creator><![CDATA[Stephane Daury]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 18:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14179</guid>
		<description><![CDATA[Nice! From your &quot;guess I need to give better trace results&quot; the other week to this? Love it. Thanks Westi!]]></description>
		<content:encoded><![CDATA[<p>Nice! From your &#8220;guess I need to give better trace results&#8221; the other week to this? Love it. Thanks Westi!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracing things back to where they came from by Ryan McCue</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14178</link>
		<dc:creator><![CDATA[Ryan McCue]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 15:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14178</guid>
		<description><![CDATA[Yep, and you have to handle WP_Errors before you try using them :)]]></description>
		<content:encoded><![CDATA[<p>Yep, and you have to handle WP_Errors before you try using them <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracing things back to where they came from by Peter Westwood</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14177</link>
		<dc:creator><![CDATA[Peter Westwood]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 15:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14177</guid>
		<description><![CDATA[True, but you do have to catch them before they run away ;)]]></description>
		<content:encoded><![CDATA[<p>True, but you do have to catch them before they run away <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracing things back to where they came from by Ryan McCue</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14176</link>
		<dc:creator><![CDATA[Ryan McCue]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 15:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14176</guid>
		<description><![CDATA[This is why I like exceptions; they automatically include a backtrace with them. ;)]]></description>
		<content:encoded><![CDATA[<p>This is why I like exceptions; they automatically include a backtrace with them. <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracing things back to where they came from by Peter Westwood</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14175</link>
		<dc:creator><![CDATA[Peter Westwood]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 14:37:10 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14175</guid>
		<description><![CDATA[Great catch, that is what I get for writing the parameter phpDoc at the last minute. I&#039;ve fixed it up - http://core.trac.wordpress.org/changeset/19777.]]></description>
		<content:encoded><![CDATA[<p>Great catch, that is what I get for writing the parameter phpDoc at the last minute. I&#8217;ve fixed it up &#8211; <a href="http://core.trac.wordpress.org/changeset/19777" rel="nofollow">http://core.trac.wordpress.org/changeset/19777</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tracing things back to where they came from by Rarst</title>
		<link>http://westi.wordpress.com/2012/01/28/tracing-things-back-to-where-they-came-from/comment-page-1/#comment-14174</link>
		<dc:creator><![CDATA[Rarst]]></dc:creator>
		<pubDate>Sat, 28 Jan 2012 13:05:01 +0000</pubDate>
		<guid isPermaLink="false">http://westi.wordpress.com/?p=6337#comment-14174</guid>
		<description><![CDATA[Small PHPDoc issue - $skip_frames is integer, but @param for it says string.

Will be great to have in core, my custom debug functions keep organizing themselves in most chaotic way possible.]]></description>
		<content:encoded><![CDATA[<p>Small PHPDoc issue &#8211; $skip_frames is integer, but @param for it says string.</p>
<p>Will be great to have in core, my custom debug functions keep organizing themselves in most chaotic way possible.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
