<?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 Chris Schuld&#039;s Blog</title>
	<atom:link href="http://chrisschuld.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisschuld.com</link>
	<description>personal musings on the composition of software</description>
	<lastBuildDate>Tue, 03 Jan 2012 03:40:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.1</generator>
	<item>
		<title>Comment on Browser.php &#8211; Detecting a user&#8217;s browser from PHP by Daniel 'mavrick' Lang</title>
		<link>http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/#comment-20523</link>
		<dc:creator>Daniel 'mavrick' Lang</dc:creator>
		<pubDate>Tue, 03 Jan 2012 03:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?page_id=111#comment-20523</guid>
		<description>Working on an updated version for PHP5 and PHP4</description>
		<content:encoded><![CDATA[<p>Working on an updated version for PHP5 and PHP4</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting the Timezones across all VPS&#8217;s (OpenVZ) by Chris Schuld</title>
		<link>http://chrisschuld.com/2009/10/setting-the-timezones-across-all-vps-openvz/#comment-11026</link>
		<dc:creator>Chris Schuld</dc:creator>
		<pubDate>Thu, 11 Aug 2011 16:10:16 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?p=273#comment-11026</guid>
		<description>@VPSNOC &amp; @SERVERHORROR

I agree with you 100% and have updated the post!

Thanks, Chris</description>
		<content:encoded><![CDATA[<p>@VPSNOC &#038; @SERVERHORROR</p>
<p>I agree with you 100% and have updated the post!</p>
<p>Thanks, Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser.php &#8211; Detecting a user&#8217;s browser from PHP by Tim Golen</title>
		<link>http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/#comment-10285</link>
		<dc:creator>Tim Golen</dc:creator>
		<pubDate>Tue, 19 Jul 2011 12:51:18 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?page_id=111#comment-10285</guid>
		<description>Here&#039;s a JavaScript version that I whipped up. http://www.golen.net/blog/browser-js-a-javascript-alternative-to-browser-php/</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a JavaScript version that I whipped up. <a href="http://www.golen.net/blog/browser-js-a-javascript-alternative-to-browser-php/" rel="nofollow">http://www.golen.net/blog/browser-js-a-javascript-alternative-to-browser-php/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser.php &#8211; Detecting a user&#8217;s browser from PHP by Browser.js &#8211; A JavaScript alternative to Browser.php &#124; Tims Tech Blog</title>
		<link>http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/#comment-10261</link>
		<dc:creator>Browser.js &#8211; A JavaScript alternative to Browser.php &#124; Tims Tech Blog</dc:creator>
		<pubDate>Mon, 18 Jul 2011 21:13:12 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?page_id=111#comment-10261</guid>
		<description>[...] original site for Browser.php can be found here.    This entry was posted in My PHP / MySQL Life by Tim Golen. Bookmark the [...]</description>
		<content:encoded><![CDATA[<p>[...] original site for Browser.php can be found here.    This entry was posted in My PHP / MySQL Life by Tim Golen. Bookmark the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser.php &#8211; Detecting a user&#8217;s browser from PHP by Dohq</title>
		<link>http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/#comment-10228</link>
		<dc:creator>Dohq</dc:creator>
		<pubDate>Mon, 18 Jul 2011 06:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?page_id=111#comment-10228</guid>
		<description>Google Rich Snippet use User agent: Googlebot-richsnippets

So, NOTICE messages were raised in line 447. So checkBrowserGoogleBot function need fix as following:

protected function checkBrowserGoogleBot() {
  if( stripos($this-&gt;_agent,&#039;googlebot&#039;) !== false ) {
    $aresult = explode(&#039;/&#039;,stristr($this-&gt;_agent,&#039;googlebot&#039;));
    $aversion = isset($aresult[1]) ? explode(&#039; &#039;,$aresult[1]) : array(0);
    $this-&gt;setVersion(str_replace(&#039;;&#039;,&#039;&#039;,$aversion[0]));
    $this-&gt;_browser_name = self::BROWSER_GOOGLEBOT;
    $this-&gt;setRobot(true);
    return true;
  }
  return false;
}</description>
		<content:encoded><![CDATA[<p>Google Rich Snippet use User agent: Googlebot-richsnippets</p>
<p>So, NOTICE messages were raised in line 447. So checkBrowserGoogleBot function need fix as following:</p>
<p>protected function checkBrowserGoogleBot() {<br />
  if( stripos($this-&gt;_agent,&#8217;googlebot&#8217;) !== false ) {<br />
    $aresult = explode(&#8216;/&#8217;,stristr($this-&gt;_agent,&#8217;googlebot&#8217;));<br />
    $aversion = isset($aresult[1]) ? explode(&#8216; &#8216;,$aresult[1]) : array(0);<br />
    $this-&gt;setVersion(str_replace(&#8216;;&#8217;,&#8221;,$aversion[0]));<br />
    $this-&gt;_browser_name = self::BROWSER_GOOGLEBOT;<br />
    $this-&gt;setRobot(true);<br />
    return true;<br />
  }<br />
  return false;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser.php &#8211; Detecting a user&#8217;s browser from PHP by Yoosuf</title>
		<link>http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/#comment-10227</link>
		<dc:creator>Yoosuf</dc:creator>
		<pubDate>Mon, 18 Jul 2011 06:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?page_id=111#comment-10227</guid>
		<description>Thanks for the class, i am using it for my  themes and templates to add the conditional styles (especially for internet Explore :) )</description>
		<content:encoded><![CDATA[<p>Thanks for the class, i am using it for my  themes and templates to add the conditional styles (especially for internet Explore <img src='http://chrisschuld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Removing Images from a WordPress Post by pet</title>
		<link>http://chrisschuld.com/2008/08/removing-images-from-a-wordpress-post/#comment-10164</link>
		<dc:creator>pet</dc:creator>
		<pubDate>Sat, 16 Jul 2011 18:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?p=47#comment-10164</guid>
		<description>Thankz! You made my day</description>
		<content:encoded><![CDATA[<p>Thankz! You made my day</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser.php &#8211; Detecting a user&#8217;s browser from PHP by Mosiur</title>
		<link>http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/#comment-10136</link>
		<dc:creator>Mosiur</dc:creator>
		<pubDate>Sat, 16 Jul 2011 07:53:02 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?page_id=111#comment-10136</guid>
		<description>Excellent script. It is really very usable PHP class to gather data about Browser and OS.</description>
		<content:encoded><![CDATA[<p>Excellent script. It is really very usable PHP class to gather data about Browser and OS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Missing phpize? by Rashid</title>
		<link>http://chrisschuld.com/2007/07/missing-phpize/#comment-10055</link>
		<dc:creator>Rashid</dc:creator>
		<pubDate>Fri, 15 Jul 2011 02:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/2007/07/missing-phpize/#comment-10055</guid>
		<description>Thanks, appreciate it very much</description>
		<content:encoded><![CDATA[<p>Thanks, appreciate it very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Browser.php &#8211; Detecting a user&#8217;s browser from PHP by netmikey</title>
		<link>http://chrisschuld.com/projects/browser-php-detecting-a-users-browser-from-php/#comment-9981</link>
		<dc:creator>netmikey</dc:creator>
		<pubDate>Wed, 13 Jul 2011 20:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://chrisschuld.com/?page_id=111#comment-9981</guid>
		<description>Hey Chris,

First of all, thanks for the great work on that piece of code! We&#039;re happy users :) Just wanted to report a bug that appeared in our logs, I guess it&#039;s an issue of an updated AOL user agent string causing Browser.php to throw errors:

Undefined offset: 1, /www/[...]/Browser.php, 435, Array ([aversion] =&gt; Array ([0] =&gt; aol/http))) called at [/www/[...]/Browser.php:435]

I hope we can get a fix sometime, that would be awesome! :)

regards,
mike</description>
		<content:encoded><![CDATA[<p>Hey Chris,</p>
<p>First of all, thanks for the great work on that piece of code! We&#8217;re happy users <img src='http://chrisschuld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Just wanted to report a bug that appeared in our logs, I guess it&#8217;s an issue of an updated AOL user agent string causing Browser.php to throw errors:</p>
<p>Undefined offset: 1, /www/[...]/Browser.php, 435, Array ([aversion] =&gt; Array ([0] =&gt; aol/http))) called at [/www/[...]/Browser.php:435]</p>
<p>I hope we can get a fix sometime, that would be awesome! <img src='http://chrisschuld.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>regards,<br />
mike</p>
]]></content:encoded>
	</item>
</channel>
</rss>
