<?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 Theme: Lithiumicious</title>
	<atom:link href="http://www.paddsolutions.com/wordpress-theme-lithiumicious/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/</link>
	<description>We provide premium quality WordPress themes, tools, inspirations and functional web solutions to business owners and bloggers.</description>
	<lastBuildDate>Thu, 09 Feb 2012 16:51:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: James</title>
		<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/#comment-78817</link>
		<dc:creator>James</dc:creator>
		<pubDate>Wed, 08 Jun 2011 07:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.paddsolutions.com/?p=540#comment-78817</guid>
		<description>Set the blog pages to show at most at Settings &gt; &lt;a href=&quot;http://codex.wordpress.org/Settings_Reading_Screen&quot; rel=&quot;nofollow&quot;&gt;Reading Settings&lt;/a&gt; of your dashboard.</description>
		<content:encoded><![CDATA[<p>Set the blog pages to show at most at Settings &gt; <a href="http://codex.wordpress.org/Settings_Reading_Screen" rel="nofollow">Reading Settings</a> of your dashboard.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: em</title>
		<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/#comment-76940</link>
		<dc:creator>em</dc:creator>
		<pubDate>Mon, 06 Jun 2011 11:53:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.paddsolutions.com/?p=540#comment-76940</guid>
		<description>how am i able to  get more than 8 posts to show on the homepage. lots of empty white space at the botom?</description>
		<content:encoded><![CDATA[<p>how am i able to  get more than 8 posts to show on the homepage. lots of empty white space at the botom?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vijay Padiyar</title>
		<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/#comment-34863</link>
		<dc:creator>Vijay Padiyar</dc:creator>
		<pubDate>Sun, 07 Nov 2010 21:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.paddsolutions.com/?p=540#comment-34863</guid>
		<description>First of all, this is a really great theme!

Just wanted to bring to your attention a bug in wp-content/themes/lithiumicious/functions/thumb/thumb.php:

The stripping of &quot;http/https&quot; and &quot;www.&quot; doesn&#039;t happen as expected in cleanSource(). I have changed the function to what is shown below, and now it works.

To all those reading: change the function cleanSource() in thumb.php to the following:

/**
 * tidy up the image source url
 */
function cleanSource($src) {

	// remove slash from start of string
	if(strpos($src, &quot;/&quot;) == 0) {
		$src = substr($src, -(strlen($src) - 1));
	}

	// remove http/ https/ ftp
	$src = preg_replace(&quot;/^((ht&#124;f)tp(s&#124;):\/\/)/i&quot;, &quot;&quot;, $src);

	// remove domain name from the source url
	$host = $_SERVER[&quot;HTTP_HOST&quot;];
	$src = str_replace($host, &quot;&quot;, $src);
	$src = str_replace(&quot;www.&quot;, &quot;&quot;, $src);
	
	// don&#039;t allow users the ability to use &#039;../&#039;
	// in order to gain access to files below document root

	// src should be specified relative to document root like:
	// src=images/img.jpg or src=/images/img.jpg
	// not like:
	// src=../images/img.jpg
	$src = preg_replace(&quot;/\.\.+\//&quot;, &quot;&quot;, $src);

	// get path to image on file system
	$src = get_document_root($src) . &#039;/&#039; . $src;
	
	return $src;

}

Regards

Vijay</description>
		<content:encoded><![CDATA[<p>First of all, this is a really great theme!</p>
<p>Just wanted to bring to your attention a bug in wp-content/themes/lithiumicious/functions/thumb/thumb.php:</p>
<p>The stripping of &#8220;http/https&#8221; and &#8220;www.&#8221; doesn&#8217;t happen as expected in cleanSource(). I have changed the function to what is shown below, and now it works.</p>
<p>To all those reading: change the function cleanSource() in thumb.php to the following:</p>
<p>/**<br />
 * tidy up the image source url<br />
 */<br />
function cleanSource($src) {</p>
<p>	// remove slash from start of string<br />
	if(strpos($src, &#8220;/&#8221;) == 0) {<br />
		$src = substr($src, -(strlen($src) &#8211; 1));<br />
	}</p>
<p>	// remove http/ https/ ftp<br />
	$src = preg_replace(&#8220;/^((ht|f)tp(s|):\/\/)/i&#8221;, &#8220;&#8221;, $src);</p>
<p>	// remove domain name from the source url<br />
	$host = $_SERVER["HTTP_HOST"];<br />
	$src = str_replace($host, &#8220;&#8221;, $src);<br />
	$src = str_replace(&#8220;www.&#8221;, &#8220;&#8221;, $src);</p>
<p>	// don&#8217;t allow users the ability to use &#8216;../&#8217;<br />
	// in order to gain access to files below document root</p>
<p>	// src should be specified relative to document root like:<br />
	// src=images/img.jpg or src=/images/img.jpg<br />
	// not like:<br />
	// src=../images/img.jpg<br />
	$src = preg_replace(&#8220;/\.\.+\//&#8221;, &#8220;&#8221;, $src);</p>
<p>	// get path to image on file system<br />
	$src = get_document_root($src) . &#8216;/&#8217; . $src;</p>
<p>	return $src;</p>
<p>}</p>
<p>Regards</p>
<p>Vijay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 58 Temas para Wordpress (Free) - Cento e Vinte</title>
		<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/#comment-29989</link>
		<dc:creator>58 Temas para Wordpress (Free) - Cento e Vinte</dc:creator>
		<pubDate>Thu, 23 Sep 2010 17:57:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.paddsolutions.com/?p=540#comment-29989</guid>
		<description>[...] Demo Theme Details Download Theme Padd [...]</description>
		<content:encoded><![CDATA[<p>[...] Demo Theme Details Download Theme Padd [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 2010年6月7月8月最新的免费WordPress主题│领潮社 &#124; 领潮社</title>
		<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/#comment-28069</link>
		<dc:creator>2010年6月7月8月最新的免费WordPress主题│领潮社 &#124; 领潮社</dc:creator>
		<pubDate>Sun, 05 Sep 2010 23:00:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.paddsolutions.com/?p=540#comment-28069</guid>
		<description>[...] 详细 [...]</description>
		<content:encoded><![CDATA[<p>[...] 详细 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 5 Resources &#8211; September 4th 2010 &#124; InspirationOverload</title>
		<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/#comment-27851</link>
		<dc:creator>5 Resources &#8211; September 4th 2010 &#124; InspirationOverload</dc:creator>
		<pubDate>Sat, 04 Sep 2010 16:44:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.paddsolutions.com/?p=540#comment-27851</guid>
		<description>[...] WordPress Theme &#8211; Lithiumicious [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Theme &#8211; Lithiumicious [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Theme: Nitrogenate &#124; GetWP.info</title>
		<link>http://www.paddsolutions.com/wordpress-theme-lithiumicious/#comment-24962</link>
		<dc:creator>WordPress Theme: Nitrogenate &#124; GetWP.info</dc:creator>
		<pubDate>Mon, 02 Aug 2010 22:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.paddsolutions.com/?p=540#comment-24962</guid>
		<description>[...] WordPress Theme: Lithiumicious [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress Theme: Lithiumicious [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

