<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>yaleman.org &#187; calendar</title>
	<atom:link href="http://www.yaleman.org/tag/calendar/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yaleman.org</link>
	<description>a blog by James Hodgkinson</description>
	<lastBuildDate>Thu, 19 Jan 2012 11:10:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>JCal Pro All day problem fix.</title>
		<link>http://www.yaleman.org/2008/08/28/jcal-pro-all-day-problem-fix/</link>
		<comments>http://www.yaleman.org/2008/08/28/jcal-pro-all-day-problem-fix/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 05:19:16 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[jcal]]></category>
		<category><![CDATA[jcal pro]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.ricetek.net/?p=340</guid>
		<description><![CDATA[It seems that on the &#8220;upcoming events&#8221; module of JCal Pro it shows &#8220;(All Day)&#8221; if you&#8217;ve got an all day item. It&#8217;s ugly and I was asked how to remove it. Here&#8217;s how to do it: Edit modules/mod_jcalpro_latest.php Comment out this line: $returnstring .= ( $EXTCAL_CONFIG['show_times'] ) ? &#8216; (&#8216; . $start_time . ( [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that on the &#8220;upcoming events&#8221; module of JCal Pro it shows &#8220;(All Day)&#8221; if you&#8217;ve got an all day item. It&#8217;s ugly and I was asked how to remove it. Here&#8217;s how to do it:</p>
<p>Edit modules/mod_jcalpro_latest.php<br />
Comment out this line:</p>
<blockquote><p>$returnstring .= ( $EXTCAL_CONFIG['show_times'] ) ? &#8216; (&#8216; . $start_time . ( ($EXTCAL_CONFIG['show_times'] == 3         || $no_end_specified) ? &#8221; : &#8216; &#8211; &#8216; . $end_time ) . &#8216;)&#8217; : &#8221;;</p></blockquote>
<p>Replace it with:</p>
<blockquote><p>if( $EXTCAL_CONFIG['show_times'] )<br />
{<br />
if( $start_time != EXTCAL_TEXT_ALL_DAY )<br />
{<br />
$returnstring .= &#8216; (&#8216; . $start_time . ( ($EXTCAL_CONFIG['show_times'] == 3 || $no_end_specified) ? &#8221; : &#8216; &#8211; &#8216; . $end_time ) . &#8216;)&#8217;;<br />
}<br />
}</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.yaleman.org/2008/08/28/jcal-pro-all-day-problem-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

