<?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 for John Blackbourn</title>
	<atom:link href="/comments/feed" rel="self" type="application/rss+xml" />
	<link>https://lud.icro.us</link>
	<description></description>
	<lastBuildDate>Tue, 07 Jan 2014 01:47:25 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9-alpha</generator>
	<item>
		<title>Comment on WordPress Plugin: Disable WordPress Plugin Updates by John Blackbourn</title>
		<link>https://lud.icro.us/disable-wordpress-plugin-updates#comment-13225</link>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
		<pubDate>Tue, 07 Jan 2014 01:47:25 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/disable-wordpress-plugin-updates/#comment-13225</guid>
		<description><![CDATA[Hi Carmen,

Nope, it&#039;s important that you always keep your plugins up to date. This plugin is intended for users who have other processes in place for updating their plugins, such as SVN, Git, or other version control systems.

From the plugin description:

&lt;blockquote&gt;Please note!
It&#039;s very important that you keep your WordPress plugins up to date. If you don&#039;t, your blog or website could be susceptible to security vulnerabilities or performance issues. If you use this plugin, you must make sure you keep yourself up to date with new releases of your active plugins and update them as new versions are released.&lt;/blockquote&gt;

John]]></description>
		<content:encoded><![CDATA[<p>Hi Carmen,</p>
<p>Nope, it&#8217;s important that you always keep your plugins up to date. This plugin is intended for users who have other processes in place for updating their plugins, such as SVN, Git, or other version control systems.</p>
<p>From the plugin description:</p>
<blockquote><p>Please note!<br />
It&#8217;s very important that you keep your WordPress plugins up to date. If you don&#8217;t, your blog or website could be susceptible to security vulnerabilities or performance issues. If you use this plugin, you must make sure you keep yourself up to date with new releases of your active plugins and update them as new versions are released.</p></blockquote>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: Disable WordPress Plugin Updates by Carmen</title>
		<link>https://lud.icro.us/disable-wordpress-plugin-updates#comment-13224</link>
		<dc:creator><![CDATA[Carmen]]></dc:creator>
		<pubDate>Mon, 06 Jan 2014 23:43:33 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/disable-wordpress-plugin-updates/#comment-13224</guid>
		<description><![CDATA[I am a new front end developer (no PHP) and using WP as well as still in the research and learning stages.  Ran across your plugin and curious, looks cool but have a question... 
If you disable plugin updates, is it never necessary to update any?  May sound like a dumb question, but I never learned anything by not asking.
Thanks in advance if you have time to reply!
Warm Regards, 
Carmen]]></description>
		<content:encoded><![CDATA[<p>I am a new front end developer (no PHP) and using WP as well as still in the research and learning stages.  Ran across your plugin and curious, looks cool but have a question&#8230;<br />
If you disable plugin updates, is it never necessary to update any?  May sound like a dumb question, but I never learned anything by not asking.<br />
Thanks in advance if you have time to reply!<br />
Warm Regards,<br />
Carmen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: Plugin Info by Piet</title>
		<link>https://lud.icro.us/wordpress-plugin-info#comment-13222</link>
		<dc:creator><![CDATA[Piet]]></dc:creator>
		<pubDate>Mon, 23 Dec 2013 14:50:39 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-13222</guid>
		<description><![CDATA[Thanks for the effort John. In the meantime I have solved the issue by using the code from the tutsplus tutorial.]]></description>
		<content:encoded><![CDATA[<p>Thanks for the effort John. In the meantime I have solved the issue by using the code from the tutsplus tutorial.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: Plugin Info by John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-info#comment-13221</link>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
		<pubDate>Mon, 23 Dec 2013 14:40:23 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-13221</guid>
		<description><![CDATA[Try this: (completely untested code)

&lt;pre&gt;&lt;code&gt;add_action( &#039;init&#039;, function() {
	add_meta_box(
		&#039;plugininfo&#039;,
		__( &#039;Plugin Info&#039;, &#039;plugin_info&#039; ),
		array( $GLOBALS[&#039;plugin_info&#039;], &#039;meta_box&#039; ),
		MY_CUSTOM_POST_TYPE_NAME,
		&#039;side&#039;
	);
} );&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Try this: (completely untested code)</p>
<pre><code>add_action( 'init', function() {
	add_meta_box(
		'plugininfo',
		__( 'Plugin Info', 'plugin_info' ),
		array( $GLOBALS['plugin_info'], 'meta_box' ),
		MY_CUSTOM_POST_TYPE_NAME,
		'side'
	);
} );</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: Plugin Info by Piet</title>
		<link>https://lud.icro.us/wordpress-plugin-info#comment-13220</link>
		<dc:creator><![CDATA[Piet]]></dc:creator>
		<pubDate>Mon, 23 Dec 2013 01:29:26 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-13220</guid>
		<description><![CDATA[Is there a way to get the metabox to show on Custom Post Types? I saw a reference in your code to &lt;code&gt;post_type =&gt; &#039;any&#039;&lt;/code&gt;, but I only see it on my Posts and Pages post-types.]]></description>
		<content:encoded><![CDATA[<p>Is there a way to get the metabox to show on Custom Post Types? I saw a reference in your code to <code>post_type =&gt; 'any'</code>, but I only see it on my Posts and Pages post-types.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-13217</link>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
		<pubDate>Tue, 17 Dec 2013 13:52:19 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-13217</guid>
		<description><![CDATA[The plugin&#039;s main function for switching users is &lt;code&gt;switch_to_user()&lt;/code&gt;. If you take a look at the plugin you&#039;ll see it&#039;s quite well documented. It&#039;d be fairly simple to write your own form which displayed a list of users and allowed you to switch to one using that function.]]></description>
		<content:encoded><![CDATA[<p>The plugin&#8217;s main function for switching users is <code>switch_to_user()</code>. If you take a look at the plugin you&#8217;ll see it&#8217;s quite well documented. It&#8217;d be fairly simple to write your own form which displayed a list of users and allowed you to switch to one using that function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by Marcel Maurice Naef</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-13216</link>
		<dc:creator><![CDATA[Marcel Maurice Naef]]></dc:creator>
		<pubDate>Mon, 16 Dec 2013 19:08:54 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-13216</guid>
		<description><![CDATA[Hi John

Absolutely love this plugin and goes in every DEV install. Was wondering thou if it would be possible to load the user switching functionality on the front end, lets say in a select field? Is it possible to reuse the plugins code and just switch the user?

Thanks for the reply,
regards Marcel]]></description>
		<content:encoded><![CDATA[<p>Hi John</p>
<p>Absolutely love this plugin and goes in every DEV install. Was wondering thou if it would be possible to load the user switching functionality on the front end, lets say in a select field? Is it possible to reuse the plugins code and just switch the user?</p>
<p>Thanks for the reply,<br />
regards Marcel</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by Arnaud</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-11546</link>
		<dc:creator><![CDATA[Arnaud]]></dc:creator>
		<pubDate>Tue, 29 Oct 2013 10:23:42 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-11546</guid>
		<description><![CDATA[no error message 
but doesn’t switch to this specific user]]></description>
		<content:encoded><![CDATA[<p>no error message<br />
but doesn’t switch to this specific user</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-11545</link>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
		<pubDate>Tue, 29 Oct 2013 10:22:01 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-11545</guid>
		<description><![CDATA[What error message do you get Arnaud?]]></description>
		<content:encoded><![CDATA[<p>What error message do you get Arnaud?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by Arnaud</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-11544</link>
		<dc:creator><![CDATA[Arnaud]]></dc:creator>
		<pubDate>Tue, 29 Oct 2013 09:48:45 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-11544</guid>
		<description><![CDATA[I use this function in function.php 

&lt;code&gt;
function redirect_nonadmin_fromdash(){

    if($_SERVER[&#039;PHP_SELF&#039;] == &#039;/wp-admin/async-upload.php&#039;){

        /* allow users to upload files */

        return true;

    } else if ( ! current_user_can( &#039;administrator&#039; ) &amp;&amp; &#039;/wp-admin/admin-ajax.php&#039; != $_SERVER[&#039;PHP_SELF&#039;] ) {
		wp_redirect( home_url() );
		exit;
	}

}

add_action( &#039;login_form_login&#039;, &#039;redirect_nonadmin_fromdash&#039; );
add_action( &#039;admin_init&#039;, &#039;redirect_nonadmin_fromdash&#039;, 1 );
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>I use this function in function.php </p>
<p><code><br />
function redirect_nonadmin_fromdash(){</p>
<p>    if($_SERVER['PHP_SELF'] == '/wp-admin/async-upload.php'){</p>
<p>        /* allow users to upload files */</p>
<p>        return true;</p>
<p>    } else if ( ! current_user_can( 'administrator' ) &amp;&amp; '/wp-admin/admin-ajax.php' != $_SERVER['PHP_SELF'] ) {<br />
		wp_redirect( home_url() );<br />
		exit;<br />
	}</p>
<p>}</p>
<p>add_action( 'login_form_login', 'redirect_nonadmin_fromdash' );<br />
add_action( 'admin_init', 'redirect_nonadmin_fromdash', 1 );<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by Arnaud</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-11543</link>
		<dc:creator><![CDATA[Arnaud]]></dc:creator>
		<pubDate>Tue, 29 Oct 2013 09:44:10 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-11543</guid>
		<description><![CDATA[Hello !,

First, thanks a lot for this great plug !.

But :)
I just did the update today and it don&#039;t work any more .
When i switch to a user it doesn&#039;t switch to this specific user.]]></description>
		<content:encoded><![CDATA[<p>Hello !,</p>
<p>First, thanks a lot for this great plug !.</p>
<p>But :)<br />
I just did the update today and it don&#8217;t work any more .<br />
When i switch to a user it doesn&#8217;t switch to this specific user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving Post Meta Field Revisions in WordPress by John Blackbourn</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-11449</link>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
		<pubDate>Tue, 15 Oct 2013 14:56:39 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-11449</guid>
		<description><![CDATA[Looks like you spotted a typo in my post there David. I changed &#039;foo&#039; to &#039;my_meta&#039;. You should change each instance of &#039;my_meta&#039; to your plugin&#039;s meta field name. If you have multiple post meta fields that you&#039;d like to revision, then you&#039;ll need to loop over them.]]></description>
		<content:encoded><![CDATA[<p>Looks like you spotted a typo in my post there David. I changed &#8216;foo&#8217; to &#8216;my_meta&#8217;. You should change each instance of &#8216;my_meta&#8217; to your plugin&#8217;s meta field name. If you have multiple post meta fields that you&#8217;d like to revision, then you&#8217;ll need to loop over them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving Post Meta Field Revisions in WordPress by David</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-11448</link>
		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Tue, 15 Oct 2013 13:39:33 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-11448</guid>
		<description><![CDATA[Hi John,

This plugin seems to be just what I&#039;m after. I&#039;ve installed and activated it but I&#039;m not sure what you mean by ...

&quot;You’ll need to manually add/edit the ‘foo’ field using the Custom Fields panel on the post editing screen, then you can play around with viewing and reverting revisions.&quot;

Do I need to add a custom field called foo?

Basically I&#039;ve got a few different custom fields already, &quot;actor_name&quot;, &quot;actor_age&quot; and I&#039;d love for them to be saved and displayed in revisions.

Any tips please? Thank you for any help.

David]]></description>
		<content:encoded><![CDATA[<p>Hi John,</p>
<p>This plugin seems to be just what I&#8217;m after. I&#8217;ve installed and activated it but I&#8217;m not sure what you mean by &#8230;</p>
<p>&#8220;You’ll need to manually add/edit the ‘foo’ field using the Custom Fields panel on the post editing screen, then you can play around with viewing and reverting revisions.&#8221;</p>
<p>Do I need to add a custom field called foo?</p>
<p>Basically I&#8217;ve got a few different custom fields already, &#8220;actor_name&#8221;, &#8220;actor_age&#8221; and I&#8217;d love for them to be saved and displayed in revisions.</p>
<p>Any tips please? Thank you for any help.</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving Post Meta Field Revisions in WordPress by John Blackbourn</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-11279</link>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
		<pubDate>Fri, 20 Sep 2013 11:07:37 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-11279</guid>
		<description><![CDATA[You&#039;ll need to check your logic there Mark. You&#039;ll notice you&#039;re doing:

&lt;code&gt;
if ( false === $meta ) {
foreach ($meta as $key =&gt; $value) {
&lt;/code&gt;

Obviously you can&#039;t loop over a boolean false value. Try dumping the value from &lt;code&gt;get_metadata()&lt;/code&gt; and see what you get and go from there.]]></description>
		<content:encoded><![CDATA[<p>You&#8217;ll need to check your logic there Mark. You&#8217;ll notice you&#8217;re doing:</p>
<p><code><br />
if ( false === $meta ) {<br />
foreach ($meta as $key => $value) {<br />
</code></p>
<p>Obviously you can&#8217;t loop over a boolean false value. Try dumping the value from <code>get_metadata()</code> and see what you get and go from there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Saving Post Meta Field Revisions in WordPress by Mark</title>
		<link>https://lud.icro.us/post-meta-revisions-wordpress#comment-11268</link>
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Fri, 20 Sep 2013 04:29:44 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=294#comment-11268</guid>
		<description><![CDATA[I&#039;m having trouble implementing this for multiple metadata fields.  I tried to loop over the meta fields, but am getting some unexpected results (notably all meta data associated with the post being deleted on save).  I made the revisions below to try to accomplish this.  Any feedback to help this work would be appreciated.

changes to function _restore_revision():

&lt;code&gt;
	$meta     = get_metadata( &#039;post&#039;, $revision-&gt;ID);

	if ( false === $meta ) {
        foreach ($meta as $key =&gt; $value) {     
		  delete_post_meta( $post_id, $key );
        }
    }
	else {
        foreach ($meta as $key =&gt; $value) { //loop over all metadata key-value pairs   
		  update_post_meta( $post_id, $key, $value );
        }
    }
&lt;/code&gt;
changes to function _save_post():
&lt;code&gt;
		$meta = get_post_meta( $parent-&gt;ID);

        if ( false !== $meta ) {
            foreach ($meta as $key =&gt; $value) { 
    			add_metadata( &#039;post&#039;, $post_id, $key, $value );
            }
        }
&lt;/code&gt;]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m having trouble implementing this for multiple metadata fields.  I tried to loop over the meta fields, but am getting some unexpected results (notably all meta data associated with the post being deleted on save).  I made the revisions below to try to accomplish this.  Any feedback to help this work would be appreciated.</p>
<p>changes to function _restore_revision():</p>
<p><code><br />
	$meta     = get_metadata( 'post', $revision-&gt;ID);</p>
<p>	if ( false === $meta ) {<br />
        foreach ($meta as $key =&gt; $value) {<br />
		  delete_post_meta( $post_id, $key );<br />
        }<br />
    }<br />
	else {<br />
        foreach ($meta as $key =&gt; $value) { //loop over all metadata key-value pairs<br />
		  update_post_meta( $post_id, $key, $value );<br />
        }<br />
    }<br />
</code><br />
changes to function _save_post():<br />
<code><br />
		$meta = get_post_meta( $parent-&gt;ID);</p>
<p>        if ( false !== $meta ) {<br />
            foreach ($meta as $key =&gt; $value) {<br />
    			add_metadata( 'post', $post_id, $key, $value );<br />
            }<br />
        }<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by Knut Sparhell</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-11040</link>
		<dc:creator><![CDATA[Knut Sparhell]]></dc:creator>
		<pubDate>Wed, 28 Aug 2013 18:55:21 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-11040</guid>
		<description><![CDATA[Thank your for the quick reply!

Yes, &quot;cannot log in&quot; was incorrect. They just can&#039;t access the admin at all, but are redirected to front, as you say. That was exactly what I experienced. So &quot;User Swiching&quot; even lets you test that.

Closed enhancement request, invalid.]]></description>
		<content:encoded><![CDATA[<p>Thank your for the quick reply!</p>
<p>Yes, &#8220;cannot log in&#8221; was incorrect. They just can&#8217;t access the admin at all, but are redirected to front, as you say. That was exactly what I experienced. So &#8220;User Swiching&#8221; even lets you test that.</p>
<p>Closed enhancement request, invalid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by John Blackbourn</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-11038</link>
		<dc:creator><![CDATA[John Blackbourn]]></dc:creator>
		<pubDate>Wed, 28 Aug 2013 10:03:34 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-11038</guid>
		<description><![CDATA[Thanks for the comment Knut.

A user with no role can still log in (both on Multisite and on single site installs) but they can&#039;t access the admin area. I&#039;ve previously tested the behaviour of User Switching on Multisite for users with no role and it works as expected (you get redirected to the home page after switching).

I just tested this on a single site install and the behaviour is the same. When you switch you get redirected to the home page (because the user does not have the &lt;code&gt;read&lt;/code&gt; capability).

Are you seeing different behaviour? If so it might be due to another plugin on your site. Can you confirm for me?

John]]></description>
		<content:encoded><![CDATA[<p>Thanks for the comment Knut.</p>
<p>A user with no role can still log in (both on Multisite and on single site installs) but they can&#8217;t access the admin area. I&#8217;ve previously tested the behaviour of User Switching on Multisite for users with no role and it works as expected (you get redirected to the home page after switching).</p>
<p>I just tested this on a single site install and the behaviour is the same. When you switch you get redirected to the home page (because the user does not have the <code>read</code> capability).</p>
<p>Are you seeing different behaviour? If so it might be due to another plugin on your site. Can you confirm for me?</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: User Switching by Knut Sparhell</title>
		<link>https://lud.icro.us/wordpress-plugin-user-switching#comment-11037</link>
		<dc:creator><![CDATA[Knut Sparhell]]></dc:creator>
		<pubDate>Wed, 28 Aug 2013 06:33:32 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=96#comment-11037</guid>
		<description><![CDATA[When a user has &quot;No role on this site&quot; then switching user will be unsuccessful. I suggest not showing the switch link for users that have no role, because they cannot log in at all.

This is very different form the role &quot;Subscriber&quot;, since they can log in. Without any role the switch link should not be shown for this user. On multisite this is very relevant.]]></description>
		<content:encoded><![CDATA[<p>When a user has &#8220;No role on this site&#8221; then switching user will be unsuccessful. I suggest not showing the switch link for users that have no role, because they cannot log in at all.</p>
<p>This is very different form the role &#8220;Subscriber&#8221;, since they can log in. Without any role the switch link should not be shown for this user. On multisite this is very relevant.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: Plugin Info by Vasily</title>
		<link>https://lud.icro.us/wordpress-plugin-info#comment-10981</link>
		<dc:creator><![CDATA[Vasily]]></dc:creator>
		<pubDate>Sun, 11 Aug 2013 23:55:57 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-10981</guid>
		<description><![CDATA[Looks like Smart Sliding Notes uses something called Plugin Update Checker to check for updates to itself, which references a class named PluginInfo ... that&#039;s probably what was causing the error.]]></description>
		<content:encoded><![CDATA[<p>Looks like Smart Sliding Notes uses something called Plugin Update Checker to check for updates to itself, which references a class named PluginInfo &#8230; that&#8217;s probably what was causing the error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress Plugin: Plugin Info by Vasily</title>
		<link>https://lud.icro.us/wordpress-plugin-info#comment-10979</link>
		<dc:creator><![CDATA[Vasily]]></dc:creator>
		<pubDate>Sun, 11 Aug 2013 23:23:40 +0000</pubDate>
		<guid isPermaLink="false">https://lud.icro.us/?p=50#comment-10979</guid>
		<description><![CDATA[Thanks ... I should have thought of that. Duh. The plugin activated fine when all the others were deactivated. However ... I reactivated all the plugins one by one and they&#039;re all working fine, as far as I can determine, with no errors generated. I think I&#039;ll download all my plugin source and grep for PluginInfo and see what turns up.]]></description>
		<content:encoded><![CDATA[<p>Thanks &#8230; I should have thought of that. Duh. The plugin activated fine when all the others were deactivated. However &#8230; I reactivated all the plugins one by one and they&#8217;re all working fine, as far as I can determine, with no errors generated. I think I&#8217;ll download all my plugin source and grep for PluginInfo and see what turns up.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
