<?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: Wordpress 2.8 Breaks RMRH Plugin</title>
	<atom:link href="http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/</link>
	<description>Floating my Boat</description>
	<lastBuildDate>Wed, 21 Jul 2010 19:51:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Woolie</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-5190</link>
		<dc:creator>Woolie</dc:creator>
		<pubDate>Fri, 04 Jun 2010 17:57:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-5190</guid>
		<description>@Bruce

Two things:

1.  Make sure the the &lt;strong&gt;$post&lt;/strong&gt; variable is declared &lt;strong&gt;global&lt;/strong&gt; at the top of the &lt;strong&gt;wt_rmrh_oninit&lt;/strong&gt; function:

&lt;pre&gt;
function wt_rmrh_oninit()
{
    global $post;
&lt;/pre&gt;

2. If for whatever reason the above doesn&#039;t work (but it should, I just tried it out), use the following to get the post&#039;s ID:

&lt;pre&gt;
$_POST[&#039;postid&#039;]
&lt;/pre&gt;

That the&#039;s value sent by the javascript.</description>
		<content:encoded><![CDATA[<p>@Bruce</p>
<p>Two things:</p>
<p>1.  Make sure the the <strong>$post</strong> variable is declared <strong>global</strong> at the top of the <strong>wt_rmrh_oninit</strong> function:</p>
<pre>
function wt_rmrh_oninit()
{
    global $post;
</pre>
<p>2. If for whatever reason the above doesn&#8217;t work (but it should, I just tried it out), use the following to get the post&#8217;s ID:</p>
<pre>
$_POST['postid']
</pre>
<p>That the&#8217;s value sent by the javascript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-5117</link>
		<dc:creator>Bruce</dc:creator>
		<pubDate>Fri, 21 May 2010 05:06:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-5117</guid>
		<description>I think this is the code to increment the &#039;views&#039; custom tag: 
$post_id = intval($post-&gt;ID);
	if($post_id &gt; 0) {
		$post_views = get_post_custom($post_id);
		$post_views = intval($post_views[&#039;views&#039;][0]);
		if(!update_post_meta($post_id, &#039;views&#039;, ($post_views+1))) {
			add_post_meta($post_id, &#039;views&#039;, 1, true);
		}
	}

I tried putting this code into the function wt_rmrh_oninit() but it didn&#039;t work. What would you suggest?</description>
		<content:encoded><![CDATA[<p>I think this is the code to increment the &#8216;views&#8217; custom tag:<br />
$post_id = intval($post-&gt;ID);<br />
	if($post_id &gt; 0) {<br />
		$post_views = get_post_custom($post_id);<br />
		$post_views = intval($post_views['views'][0]);<br />
		if(!update_post_meta($post_id, &#8216;views&#8217;, ($post_views+1))) {<br />
			add_post_meta($post_id, &#8216;views&#8217;, 1, true);<br />
		}<br />
	}</p>
<p>I tried putting this code into the function wt_rmrh_oninit() but it didn&#8217;t work. What would you suggest?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RobAMacAF</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-2381</link>
		<dc:creator>RobAMacAF</dc:creator>
		<pubDate>Wed, 30 Sep 2009 16:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-2381</guid>
		<description>Woolie,
I see when using your plugin with Lightbox Plus that after I click READ MORE, the pictures that were loaded dynamically are no longer acting as lightboxes, but as normal pictures. Might you know a way of going about and fixing this? if you dont want to do the leg work to do it just point me in the right direction and I can see what I can find out. Great plugin, I love it

Rob</description>
		<content:encoded><![CDATA[<p>Woolie,<br />
I see when using your plugin with Lightbox Plus that after I click READ MORE, the pictures that were loaded dynamically are no longer acting as lightboxes, but as normal pictures. Might you know a way of going about and fixing this? if you dont want to do the leg work to do it just point me in the right direction and I can see what I can find out. Great plugin, I love it</p>
<p>Rob</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woolie</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1303</link>
		<dc:creator>Woolie</dc:creator>
		<pubDate>Wed, 29 Jul 2009 14:57:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1303</guid>
		<description>Uh oh..Looks like strripos is a php5 only function.  I guess your server is still using php4?  I&#039;m going to need to fix that next chance I get.  If you&#039;re up to it, you can comment out the if statement with that function call (~ line 42).  It&#039;s only purpose is to keep the RMRH javascript from loading while in the admin area.  There are better Wordpress functions I should be using instead (though it seems like I had issues with them when I originally wrote this).  Anyway, you can comment that out and it won&#039;t be a big deal.

Sorry James!</description>
		<content:encoded><![CDATA[<p>Uh oh..Looks like strripos is a php5 only function.  I guess your server is still using php4?  I&#8217;m going to need to fix that next chance I get.  If you&#8217;re up to it, you can comment out the if statement with that function call (~ line 42).  It&#8217;s only purpose is to keep the RMRH javascript from loading while in the admin area.  There are better Wordpress functions I should be using instead (though it seems like I had issues with them when I originally wrote this).  Anyway, you can comment that out and it won&#8217;t be a big deal.</p>
<p>Sorry James!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: james.jackson</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1288</link>
		<dc:creator>james.jackson</dc:creator>
		<pubDate>Tue, 28 Jul 2009 16:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1288</guid>
		<description>I&#039;ve used RMRH on a couple of sites &amp; LOVE it.  However, when trying to install it on two new WP sites (v2.8.2) I get this error message:
&lt;b&gt;Fatal error: Call to undefined function: strripos() in /nfs/cust/2/71/10/401172/web/wordpress/wp-content/plugins/read-more-right-here/read-more-right-here.php on line 42&lt;/b&gt;
I then have to FTP into the sites, delete the plugin&#039;s folder &amp; then all is fine.  Any suggestions or ideas about this?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve used RMRH on a couple of sites &amp; LOVE it.  However, when trying to install it on two new WP sites (v2.8.2) I get this error message:<br />
<b>Fatal error: Call to undefined function: strripos() in /nfs/cust/2/71/10/401172/web/wordpress/wp-content/plugins/read-more-right-here/read-more-right-here.php on line 42</b><br />
I then have to FTP into the sites, delete the plugin&#8217;s folder &amp; then all is fine.  Any suggestions or ideas about this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AIR</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1157</link>
		<dc:creator>AIR</dc:creator>
		<pubDate>Thu, 16 Jul 2009 07:31:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1157</guid>
		<description>Wow :) Thank you! Due to your post I&#039;ve found where to make a fix :)
file: read-more-right-here.php
change &quot;$loadImageName = &#039;ajax-loader.gif&#039;;&quot; to &quot;$loadImageName = &#039;/ajax-loader.gif&#039;;&quot;
change &quot;$pluginUrl . &quot;js/wt_rmrh.js&quot;,&quot; to &quot;$pluginUrl . &quot;/js/wt_rmrh.js&quot;,&quot;
:)</description>
		<content:encoded><![CDATA[<p>Wow <img src='http://www.wooliet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thank you! Due to your post I&#8217;ve found where to make a fix <img src='http://www.wooliet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
file: read-more-right-here.php<br />
change &#8220;$loadImageName = &#8216;ajax-loader.gif&#8217;;&#8221; to &#8220;$loadImageName = &#8216;/ajax-loader.gif&#8217;;&#8221;<br />
change &#8220;$pluginUrl . &#8220;js/wt_rmrh.js&#8221;,&#8221; to &#8220;$pluginUrl . &#8220;/js/wt_rmrh.js&#8221;,&#8221;<br />
 <img src='http://www.wooliet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woolie</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1156</link>
		<dc:creator>Woolie</dc:creator>
		<pubDate>Thu, 16 Jul 2009 02:23:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1156</guid>
		<description>Hey Abdul, it looks like the path to the javascript file has somehow been messed-up.  The end of the path included in your header looks like this:
plugins/read-more-right-herejs/wt_rmrh.js
It should be:
plugins/read-more-right-here/js/wt_rmrh.js

Same looks to be true for Christoph and AIR.  I&#039;m not sure what would be different about these setups compared to mine.  Obviously I messed something up with the last update though.  As soon as I can I will get it fixed.</description>
		<content:encoded><![CDATA[<p>Hey Abdul, it looks like the path to the javascript file has somehow been messed-up.  The end of the path included in your header looks like this:<br />
plugins/read-more-right-herejs/wt_rmrh.js<br />
It should be:<br />
plugins/read-more-right-here/js/wt_rmrh.js</p>
<p>Same looks to be true for Christoph and AIR.  I&#8217;m not sure what would be different about these setups compared to mine.  Obviously I messed something up with the last update though.  As soon as I can I will get it fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abdul</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1155</link>
		<dc:creator>Abdul</dc:creator>
		<pubDate>Thu, 16 Jul 2009 01:29:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1155</guid>
		<description>Ah, shoot. Doesn&#039;t seem to be working for me Will. 


It was working fine previously (2.8) - I had it on wampserver. But when I uploaded it online and updated wordpress it stopped working.</description>
		<content:encoded><![CDATA[<p>Ah, shoot. Doesn&#8217;t seem to be working for me Will. </p>
<p>It was working fine previously (2.8) &#8211; I had it on wampserver. But when I uploaded it online and updated wordpress it stopped working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1150</link>
		<dc:creator>Christoph</dc:creator>
		<pubDate>Mon, 13 Jul 2009 14:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1150</guid>
		<description>Same here :)</description>
		<content:encoded><![CDATA[<p>Same here <img src='http://www.wooliet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AIR</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1149</link>
		<dc:creator>AIR</dc:creator>
		<pubDate>Mon, 13 Jul 2009 14:34:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1149</guid>
		<description>Well WP 2.8.1 breaks RMRH for me... It acts like there&#039;s no plugin at all. Any solutions?</description>
		<content:encoded><![CDATA[<p>Well WP 2.8.1 breaks RMRH for me&#8230; It acts like there&#8217;s no plugin at all. Any solutions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woolie</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1094</link>
		<dc:creator>Woolie</dc:creator>
		<pubDate>Fri, 26 Jun 2009 19:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1094</guid>
		<description>Mohammad: I&#039;m not sure what&#039;s going on with that, but I don&#039;t think my plugin should have any sort of adverse effect on the use of WP-PostViews.  Clicking on the &quot;Read More&quot; link is not going to update any stats related plugin because there&#039;s no way to be able to adequately support all possible stat collecting plugins.  That&#039;s sort of a trade off when using it. People either click on it right there on the page and view the rest, or they visit that post&#039;s individual page display.  As best as I can tell, WP-PostViews updates that post&#039;s view count when its displayed as an individual post or as part of a WP &quot;page&quot;.  So you are losing counts when the user selects the &quot;Read More&quot; link as opposed to clicking on the post title and going to its own page.

If you want to try and add an update to the post view count collected by WP-PostViews, the best I can tell you is you examine the &quot;process_postviews&quot; function of that plugin (starting at line 60 of wp-postviews.php).  Notice that the post&#039;s ID value, in my &#039;init&#039; hook (&quot;wt_rmrh_oninit&quot;), is grabbed from a $_POST value, and not from the global &quot;$post-&gt;ID&quot;.  Also, WP-PostViews does not appear to increment the post count when it&#039;s a logged-in user (see line 74 in &quot;wp-postviews.php&quot;).

Really though, like I mentioned, it&#039;s a trade off.  WP-PostViews collects stats when posts are individually visited. Making it easier to view your entire post content &quot;inline&quot; on the front page means that collecting stats for individual views of that post will not happen.</description>
		<content:encoded><![CDATA[<p>Mohammad: I&#8217;m not sure what&#8217;s going on with that, but I don&#8217;t think my plugin should have any sort of adverse effect on the use of WP-PostViews.  Clicking on the &#8220;Read More&#8221; link is not going to update any stats related plugin because there&#8217;s no way to be able to adequately support all possible stat collecting plugins.  That&#8217;s sort of a trade off when using it. People either click on it right there on the page and view the rest, or they visit that post&#8217;s individual page display.  As best as I can tell, WP-PostViews updates that post&#8217;s view count when its displayed as an individual post or as part of a WP &#8220;page&#8221;.  So you are losing counts when the user selects the &#8220;Read More&#8221; link as opposed to clicking on the post title and going to its own page.</p>
<p>If you want to try and add an update to the post view count collected by WP-PostViews, the best I can tell you is you examine the &#8220;process_postviews&#8221; function of that plugin (starting at line 60 of wp-postviews.php).  Notice that the post&#8217;s ID value, in my &#8216;init&#8217; hook (&#8220;wt_rmrh_oninit&#8221;), is grabbed from a $_POST value, and not from the global &#8220;$post-&gt;ID&#8221;.  Also, WP-PostViews does not appear to increment the post count when it&#8217;s a logged-in user (see line 74 in &#8220;wp-postviews.php&#8221;).</p>
<p>Really though, like I mentioned, it&#8217;s a trade off.  WP-PostViews collects stats when posts are individually visited. Making it easier to view your entire post content &#8220;inline&#8221; on the front page means that collecting stats for individual views of that post will not happen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mohammad khazab</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1093</link>
		<dc:creator>mohammad khazab</dc:creator>
		<pubDate>Fri, 26 Jun 2009 16:25:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1093</guid>
		<description>I think this is the code to increment the &#039;views&#039; custom tag: 
$post_id = intval($post-&gt;ID);
	if($post_id &gt; 0) {
		$post_views = get_post_custom($post_id);
		$post_views = intval($post_views[&#039;views&#039;][0]);
		if(!update_post_meta($post_id, &#039;views&#039;, ($post_views+1))) {
			add_post_meta($post_id, &#039;views&#039;, 1, true);
		}
	}

I tried putting this code into the function wt_rmrh_oninit() but it didn&#039;t work. What would you suggest?</description>
		<content:encoded><![CDATA[<p>I think this is the code to increment the &#8216;views&#8217; custom tag:<br />
$post_id = intval($post-&gt;ID);<br />
	if($post_id &gt; 0) {<br />
		$post_views = get_post_custom($post_id);<br />
		$post_views = intval($post_views['views'][0]);<br />
		if(!update_post_meta($post_id, &#8216;views&#8217;, ($post_views+1))) {<br />
			add_post_meta($post_id, &#8216;views&#8217;, 1, true);<br />
		}<br />
	}</p>
<p>I tried putting this code into the function wt_rmrh_oninit() but it didn&#8217;t work. What would you suggest?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mohammad khazab</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1092</link>
		<dc:creator>mohammad khazab</dc:creator>
		<pubDate>Fri, 26 Jun 2009 15:35:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1092</guid>
		<description>Sorry the second problem (with sharethis plugin) is fixed. But I am still not sure how to fix the first problem to increment num of views. appreciate your help</description>
		<content:encoded><![CDATA[<p>Sorry the second problem (with sharethis plugin) is fixed. But I am still not sure how to fix the first problem to increment num of views. appreciate your help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mohammad khazab</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1091</link>
		<dc:creator>mohammad khazab</dc:creator>
		<pubDate>Fri, 26 Jun 2009 15:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1091</guid>
		<description>by the way, the website I am using this plugin for is http://globalmediapost.com 

please have a look. you&#039;ll see that the views is not incremented when you click on the &quot;read full article&quot; link</description>
		<content:encoded><![CDATA[<p>by the way, the website I am using this plugin for is <a href="http://globalmediapost.com" rel="nofollow">http://globalmediapost.com</a> </p>
<p>please have a look. you&#8217;ll see that the views is not incremented when you click on the &#8220;read full article&#8221; link</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mohammad khazab</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1090</link>
		<dc:creator>mohammad khazab</dc:creator>
		<pubDate>Fri, 26 Jun 2009 15:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1090</guid>
		<description>Hey man,
This plugin is awesome. I love it. makes it a lot easier for people to read my posts. However, there are two minor problems. 1. It seems that when you click on the  link to see the rest of the post it doesn&#039;t increment the number of times the post has been visited. For example, I am using the WP-PostViews which shows how many times a post have been visited but with your plugin it doesn&#039;t work. Is there anyway to fix this? 2. The second problem is that when I add the ShareThis plugin to the posts your plugin stops working. Why!?
Do you have any solution for these? By the way my email address is mohammad_khazab@yahoo.com.au. Would you reply to my email if you like please?

Once again, great work mate! ;)</description>
		<content:encoded><![CDATA[<p>Hey man,<br />
This plugin is awesome. I love it. makes it a lot easier for people to read my posts. However, there are two minor problems. 1. It seems that when you click on the  link to see the rest of the post it doesn&#8217;t increment the number of times the post has been visited. For example, I am using the WP-PostViews which shows how many times a post have been visited but with your plugin it doesn&#8217;t work. Is there anyway to fix this? 2. The second problem is that when I add the ShareThis plugin to the posts your plugin stops working. Why!?<br />
Do you have any solution for these? By the way my email address is <a href="mailto:mohammad_khazab@yahoo.com.au">mohammad_khazab@yahoo.com.au</a>. Would you reply to my email if you like please?</p>
<p>Once again, great work mate! <img src='http://www.wooliet.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woolie</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1065</link>
		<dc:creator>Woolie</dc:creator>
		<pubDate>Sat, 20 Jun 2009 05:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1065</guid>
		<description>Oh, that&#039;s good to hear.  Glad it&#039;s working!</description>
		<content:encoded><![CDATA[<p>Oh, that&#8217;s good to hear.  Glad it&#8217;s working!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: plyr</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1064</link>
		<dc:creator>plyr</dc:creator>
		<pubDate>Sat, 20 Jun 2009 04:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1064</guid>
		<description>ops, sorry, it was not embed, it was a video embed with Viper&#039;s Video Quicktags, and the plugin was out of date... ^^

Its working now. Thank you for your time.</description>
		<content:encoded><![CDATA[<p>ops, sorry, it was not embed, it was a video embed with Viper&#8217;s Video Quicktags, and the plugin was out of date&#8230; ^^</p>
<p>Its working now. Thank you for your time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woolie</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1063</link>
		<dc:creator>Woolie</dc:creator>
		<pubDate>Sat, 20 Jun 2009 04:44:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1063</guid>
		<description>Toward the bottom of the home page of this site is a blog entry titled &quot;La Bomba&quot;.  The only content after its &quot;more&quot; section is an embed object.  I just tried it again and it still seems to be working fine.  Where are you seeing this issue?</description>
		<content:encoded><![CDATA[<p>Toward the bottom of the home page of this site is a blog entry titled &#8220;La Bomba&#8221;.  The only content after its &#8220;more&#8221; section is an embed object.  I just tried it again and it still seems to be working fine.  Where are you seeing this issue?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: plyr</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1062</link>
		<dc:creator>plyr</dc:creator>
		<pubDate>Sat, 20 Jun 2009 04:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1062</guid>
		<description>Just after the &quot;more&quot; tag in the post

This happens with embed video.

I will try to post with a different method like video tags to see if it works.</description>
		<content:encoded><![CDATA[<p>Just after the &#8220;more&#8221; tag in the post</p>
<p>This happens with embed video.</p>
<p>I will try to post with a different method like video tags to see if it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: plyr</title>
		<link>http://www.wooliet.com/2009/06/17/wordpress-2-8-breaks-rmrh-plugin/comment-page-1/#comment-1061</link>
		<dc:creator>plyr</dc:creator>
		<pubDate>Sat, 20 Jun 2009 04:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.wooliet.com/?p=349#comment-1061</guid>
		<description>Just after the  tag on the post.</description>
		<content:encoded><![CDATA[<p>Just after the  tag on the post.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
