<?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>Breathing Spring &#187; Joomla</title>
	<atom:link href="http://breathing-spring.com/category/joomla/feed/" rel="self" type="application/rss+xml" />
	<link>http://breathing-spring.com</link>
	<description></description>
	<lastBuildDate>Tue, 29 Jun 2010 07:48:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Connecting Joomla to external db</title>
		<link>http://breathing-spring.com/connecting-joomla-to-external-db/</link>
		<comments>http://breathing-spring.com/connecting-joomla-to-external-db/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 07:44:30 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=158</guid>
		<description><![CDATA[$db is now an object of type JDatabase and you can perform database operations on it using the usual methods.
$option = array(); //prevent problems

$option['driver']   = 'mysql';            // Database driver name
$option['host']     = 'db.myhost.com';    // Database host ]]></description>
			<content:encoded><![CDATA[<p>$db is now an object of type JDatabase and you can perform database operations on it using the usual methods.</p>
<pre>$option = array(); //prevent problems

$option['driver']   = 'mysql';            // Database driver name
$option['host']     = 'db.myhost.com';    // Database host name
$option['user']     = 'fredbloggs';       // User for database authentication
$option['password'] = 's9(39s£h[%dkFd';   // Password for database authentication
$option['database'] = 'bigdatabase';      // Database name
$option['prefix']   = 'abc_';             // Database prefix (may be empty)

$db = &amp; JDatabase::getInstance( $option );</pre>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/connecting-joomla-to-external-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>access config variables</title>
		<link>http://breathing-spring.com/access-config-variables/</link>
		<comments>http://breathing-spring.com/access-config-variables/#comments</comments>
		<pubDate>Tue, 25 May 2010 07:34:10 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=127</guid>
		<description><![CDATA[to access config variables we put it like this
add the variable to configruation.php
$my_variable
then
$GLOBALS['mosConfig_my_variable']
]]></description>
			<content:encoded><![CDATA[<p>to access config variables we put it like this<br />
add the variable to configruation.php<br />
$my_variable<br />
then<br />
$GLOBALS['mosConfig_my_variable']</p>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/access-config-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JHTML DATE in joomla</title>
		<link>http://breathing-spring.com/jhtml-date-in-joomla/</link>
		<comments>http://breathing-spring.com/jhtml-date-in-joomla/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 10:44:47 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=72</guid>
		<description><![CDATA[with the help of the following PHP date table you can add JHTML date to your code
JHTML::Date($row->date, &#8220;%A, %d. %B %Y&#8221;);
if you are modifying news then $row->date would be $this->item->created



format
Description
Example returned values




Day
&#8212;
&#8212;


%a
An abbreviated textual representation of the day
Sun through Sat


%A
A full textual representation of the day
Sunday through Saturday


%d
Two-digit day of the month (with leading zeros)
01 ]]></description>
			<content:encoded><![CDATA[<p>with the help of the following PHP date table you can add JHTML date to your code<br />
JHTML::Date($row->date, &#8220;%A, %d. %B %Y&#8221;);<br />
if you are modifying news then $row->date would be $this->item->created</p>
<table class="doctable table" border="0">
<thead>
<tr style="background-color:beige" valign="middle">
<th><tt class="parameter">format</tt></th>
<th>Description</th>
<th>Example returned values</th>
</tr>
</thead>
<tbody class="tbody">
<tr valign="middle">
<td align="center"><em class="emphasis">Day</em></td>
<td align="left">&#8212;</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%a</em></td>
<td align="left">An abbreviated textual representation of the day</td>
<td align="left"><em>Sun</em> through <em>Sat</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%A</em></td>
<td align="left">A full textual representation of the day</td>
<td align="left"><em>Sunday</em> through <em>Saturday</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%d</em></td>
<td align="left">Two-digit day of the month (with leading zeros)</td>
<td align="left"><em>01</em> to <em>31</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%e</em></td>
<td align="left">Day of the month, with a space preceeding single digits</td>
<td align="left"><em> 1</em> to <em>31</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%j</em></td>
<td align="left">Day of the year, 3 digits with leading zeros</td>
<td align="left"><em>001</em> to <em>366</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%u</em></td>
<td align="left">ISO-8601 numeric representation of the day of the week</td>
<td align="left"><em>1</em> (for Monday) though <em>7</em> (for Sunday)</td>
</tr>
<tr valign="middle">
<td align="left"><em>%w</em></td>
<td align="left">Numeric representation of the day of the week</td>
<td align="left"><em>0</em> (for Sunday) through <em>6</em> (for Saturday)</td>
</tr>
<tr valign="middle">
<td align="center"><em class="emphasis">Week</em></td>
<td align="left">&#8212;</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%U</em></td>
<td align="left">Week number of the given year, starting with the the first        	   Sunday as the first week</td>
<td align="left"><em>13</em> (for the 13th full week of the year)</td>
</tr>
<tr valign="middle">
<td align="left"><em>%V</em></td>
<td align="left">ISO-8601:1988 week number of the given year, starting with        	   the first week of the year with at least 4 weekdays, with Monday        	   being the start of the week</td>
<td align="left"><em>01</em> through <em>53</em> (where 53        	   accounts for an overlapping week)</td>
</tr>
<tr valign="middle">
<td align="left"><em>%W</em></td>
<td align="left">A numeric representation of the week of the year, starting        	   with the first Monday as the first week</td>
<td align="left"><em>46</em> (for the 46th week of the year beginning        	   with a Monday)</td>
</tr>
<tr valign="middle">
<td align="center"><em class="emphasis">Month</em></td>
<td align="left">&#8212;</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%b</em></td>
<td align="left">Abbreviated month name, based on the locale</td>
<td align="left"><em>Jan</em> through <em>Dec</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%B</em></td>
<td align="left">Full month name, based on the locale</td>
<td align="left"><em>January</em> through <em>December</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%h</em></td>
<td align="left">Abbreviated month name, based on the locale (an alias of %b)</td>
<td align="left"><em>Jan</em> through <em>Dec</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%m</em></td>
<td align="left">Two digit representation of the month</td>
<td align="left"><em>01</em> (for January) through <em>12</em> (for December)</td>
</tr>
<tr valign="middle">
<td align="center"><em class="emphasis">Year</em></td>
<td align="left">&#8212;</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%C</em></td>
<td align="left">Two digit representation of the century (year divided by 100, truncated to an integer)</td>
<td align="left"><em>19</em> for the 20th Century</td>
</tr>
<tr valign="middle">
<td align="left"><em>%g</em></td>
<td align="left">Two digit representation of the year going by ISO-8601:1988 standards (see %V)</td>
<td align="left">Example: <em>09</em> for the week of January 6, 2009</td>
</tr>
<tr valign="middle">
<td align="left"><em>%G</em></td>
<td align="left">The full four-digit version of %g</td>
<td align="left">Example: <em>2008</em> for the week of January 3, 2009</td>
</tr>
<tr valign="middle">
<td align="left"><em>%y</em></td>
<td align="left">Two digit representation of the year</td>
<td align="left">Example: <em>09</em> for 2009, <em>79</em> for 1979</td>
</tr>
<tr valign="middle">
<td align="left"><em>%Y</em></td>
<td align="left">Four digit representation for the year</td>
<td align="left">Example: <em>2038</em></td>
</tr>
<tr valign="middle">
<td align="center"><em class="emphasis">Time</em></td>
<td align="left">&#8212;</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%H</em></td>
<td align="left">Two digit representation of the hour in 24-hour format</td>
<td align="left"><em>00</em> through <em>23</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%I</em></td>
<td align="left">Two digit representation of the hour in 12-hour format</td>
<td align="left"><em>01</em> through <em>12</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%l (lower-case &#8216;L&#8217;)</em></td>
<td align="left">Hour in 12-hour format, with a space preceeding single digits</td>
<td align="left"><em> 1</em> through <em>12</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%M</em></td>
<td align="left">Two digit representation of the minute</td>
<td align="left"><em>00</em> through <em>59</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%p</em></td>
<td align="left">UPPER-CASE &#8216;AM&#8217; or &#8216;PM&#8217; based on the given time</td>
<td align="left">Example: <em>AM</em> for 00:31, <em>PM</em> for 22:23</td>
</tr>
<tr valign="middle">
<td align="left"><em>%P</em></td>
<td align="left">lower-case &#8216;am&#8217; or &#8216;pm&#8217; based on the given time</td>
<td align="left">Example: <em>am</em> for 00:31, <em>pm</em> for 22:23</td>
</tr>
<tr valign="middle">
<td align="left"><em>%r</em></td>
<td align="left">Same as &#8220;%I:%M:%S %p&#8221;</td>
<td align="left">Example: <em>09:34:17 PM</em> for 21:34:17</td>
</tr>
<tr valign="middle">
<td align="left"><em>%R</em></td>
<td align="left">Same as &#8220;%H:%M&#8221;</td>
<td align="left">Example: <em>00:35</em> for 12:35 AM, <em>16:44</em> for 4:44 PM</td>
</tr>
<tr valign="middle">
<td align="left"><em>%S</em></td>
<td align="left">Two digit representation of the second</td>
<td align="left"><em>00</em> through <em>59</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%T</em></td>
<td align="left">Same as &#8220;%H:%M:%S&#8221;</td>
<td align="left">Example: <em>21:34:17</em> for 09:34:17 PM</td>
</tr>
<tr valign="middle">
<td align="left"><em>%X</em></td>
<td align="left">Preferred time representation based on locale, without the date</td>
<td align="left">Example: <em>03:59:16</em> or <em>15:59:16</em></td>
</tr>
<tr valign="middle">
<td align="left"><em>%z</em></td>
<td align="left">Either the time zone offset from UTC or the abbreviation (depends        	   on operating system)</td>
<td align="left">Example: <em>-0500</em> or <em>EST</em> for Eastern Time</td>
</tr>
<tr valign="middle">
<td align="left"><em>%Z</em></td>
<td align="left">The time zone offset/abbreviation option NOT given by %z (depends        	   on operating system)</td>
<td align="left">Example: <em>-0500</em> or <em>EST</em> for Eastern Time</td>
</tr>
<tr valign="middle">
<td align="center"><em class="emphasis">Time and Date Stamps</em></td>
<td align="left">&#8212;</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%c</em></td>
<td align="left">Preferred date and time stamp based on local</td>
<td align="left">Example: <em>Tue Feb  5 00:45:10 2009</em> for            February 4, 2009 at 12:45:10 AM</td>
</tr>
<tr valign="middle">
<td align="left"><em>%D</em></td>
<td align="left">Same as &#8220;%m/%d/%y&#8221;</td>
<td align="left">Example: <em>02/05/09</em> for February 5, 2009</td>
</tr>
<tr valign="middle">
<td align="left"><em>%F</em></td>
<td align="left">Same as &#8220;%y-%m-%d&#8221; (commonly used in database datestamps)</td>
<td align="left">Example: <em>2009-02-05</em> for February 5, 2009</td>
</tr>
<tr valign="middle">
<td align="left"><em>%s</em></td>
<td align="left">Unix Epoch Time timestamp (same as the <a class="function" href="http://uk.php.net/manual/en/function.time.php">time()</a> function)</td>
<td align="left">Example: <em>305815200</em> for September 10, 1979 08:40:00 AM</td>
</tr>
<tr valign="middle">
<td align="left"><em>%x</em></td>
<td align="left">Preferred date representation based on locale, without the time</td>
<td align="left">Example: <em>02/05/09</em> for February 5, 2009</td>
</tr>
<tr valign="middle">
<td align="center"><em class="emphasis">Miscellaneous</em></td>
<td align="left">&#8212;</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%n</em></td>
<td align="left">A newline character (&#8220;\n&#8221;)</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%t</em></td>
<td align="left">A Tab character (&#8220;\t&#8221;)</td>
<td align="left">&#8212;</td>
</tr>
<tr valign="middle">
<td align="left"><em>%%</em></td>
<td align="left">A literal percentage character (&#8220;%&#8221;)</td>
<td align="left">&#8212;</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/jhtml-date-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>root folder path in joomla</title>
		<link>http://breathing-spring.com/get-root-folder-path-in-joomla/</link>
		<comments>http://breathing-spring.com/get-root-folder-path-in-joomla/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 12:49:59 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=68</guid>
		<description><![CDATA[to get the root folder path in joomla you can put JPATH_ROOT
to get the folders separator DS
finally your statement should be like this :
require_once(JPATH_ROOT.DS.&#8221;thefileyouwanttoinclude.php&#8221;);
or you can also use the JURI::base() for img use
good luck
]]></description>
			<content:encoded><![CDATA[<p>to get the root folder path in joomla you can put JPATH_ROOT<br />
to get the folders separator DS<br />
finally your statement should be like this :<br />
require_once(JPATH_ROOT.DS.&#8221;thefileyouwanttoinclude.php&#8221;);</p>
<p>or you can also use the JURI::base() for img use</p>
<p>good luck</p>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/get-root-folder-path-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Num Rows in joomla</title>
		<link>http://breathing-spring.com/get-num-rows-in-joomla/</link>
		<comments>http://breathing-spring.com/get-num-rows-in-joomla/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 12:01:46 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=55</guid>
		<description><![CDATA[$db =&#38; JFactory::getDBO();
$query=&#8221;select * from #__ etc&#8230;.&#8217;&#8221;);
$db-&#62;setQuery($query);
$db-&#62;Query();
if($db-&#62;getNumRows()&#62;0)
As usual silly but I would rather to show code than spending time talking, hope I made it clear
]]></description>
			<content:encoded><![CDATA[<p>$db =&amp; JFactory::getDBO();<br />
$query=&#8221;select * from #__ etc&#8230;.&#8217;&#8221;);<br />
$db-&gt;setQuery($query);<br />
$db-&gt;Query();<br />
if($db-&gt;getNumRows()&gt;0)</p>
<p>As usual silly but I would rather to show code than spending time talking, hope I made it clear</p>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/get-num-rows-in-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Template URL for joomla</title>
		<link>http://breathing-spring.com/template-url-for-joomla/</link>
		<comments>http://breathing-spring.com/template-url-for-joomla/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 09:40:46 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=57</guid>
		<description><![CDATA[to get template for URL in joomla
$tmpTools-&#62;templateurl()
]]></description>
			<content:encoded><![CDATA[<p>to get template for URL in joomla</p>
<p>$tmpTools-&gt;templateurl()</p>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/template-url-for-joomla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick sample of How to user loadRow and Root Directory</title>
		<link>http://breathing-spring.com/a-quick-sample-of-how-to-user-loadrow-and-root-directory/</link>
		<comments>http://breathing-spring.com/a-quick-sample-of-how-to-user-loadrow-and-root-directory/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 15:03:18 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=56</guid>
		<description><![CDATA[$query=&#8221;select userid, pgitemfilename from &#8220;.$this-&#62;_table_prefix.&#8221;profilegallery where id=&#8221;.$id;
$this-&#62;_db-&#62;setQuery( $query );
$this-&#62;_db-&#62;query();
$row=$this-&#62;_db-&#62;loadRow();
$pgitemfilename=$row[1];
$userid=$row[0];
unlink( JPATH_ROOT.DS.&#8221;images&#8221;.DS.&#8221;comprofiler&#8221;.DS.&#8221;plug_profilegallery&#8221;.DS.$userid.DS.$pgitemfilename);
unlink( JPATH_ROOT.DS.&#8221;images&#8221;.DS.&#8221;comprofiler&#8221;.DS.&#8221;plug_profilegallery&#8221;.DS.$userid.DS.&#8221;tn&#8221;.$pgitemfilename);
]]></description>
			<content:encoded><![CDATA[<p>$query=&#8221;select userid, pgitemfilename from &#8220;.$this-&gt;_table_prefix.&#8221;profilegallery where id=&#8221;.$id;<br />
$this-&gt;_db-&gt;setQuery( $query );<br />
$this-&gt;_db-&gt;query();<br />
$row=$this-&gt;_db-&gt;loadRow();<br />
$pgitemfilename=$row[1];<br />
$userid=$row[0];</p>
<p>unlink( JPATH_ROOT.DS.&#8221;images&#8221;.DS.&#8221;comprofiler&#8221;.DS.&#8221;plug_profilegallery&#8221;.DS.$userid.DS.$pgitemfilename);<br />
unlink( JPATH_ROOT.DS.&#8221;images&#8221;.DS.&#8221;comprofiler&#8221;.DS.&#8221;plug_profilegallery&#8221;.DS.$userid.DS.&#8221;tn&#8221;.$pgitemfilename);</p>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/a-quick-sample-of-how-to-user-loadrow-and-root-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla substitue for $_GET and $_POST</title>
		<link>http://breathing-spring.com/joomla-substitue-for-_get-and-_post/</link>
		<comments>http://breathing-spring.com/joomla-substitue-for-_get-and-_post/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 08:01:12 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=51</guid>
		<description><![CDATA[instead of using $_GET, and $_POST in jooma, the frame work use instead JRequest::getVar
actually, I found no reason at first to change $_GET and $_POST with that long string, especially that I&#8217;m not a big fan of memorizing things. Frankly, the interesting part about this long function is that it protect your Joomla system from ]]></description>
			<content:encoded><![CDATA[<p>instead of using $_GET, and $_POST in jooma, the frame work use instead <span class="search_hit">JRequest</span>::<span class="search_hit">getVar</span></p>
<p>actually, I found no reason at first to change $_GET and $_POST with that long string, especially that I&#8217;m not a big fan of memorizing things. Frankly, the interesting part about this long function is that it protect your Joomla system from Sql injection, or any sinister undesired passed string.</p>
<p>How does it protect it? I didnt go into the core of this function but I believe its some secure code that stripes tags.</p>
<p>The simplest way to use the function is :</p>
<pre class="code"><span class="php-var">$var</span> = <span class="search_hit">JRequest</span>::<span class="search_hit">getVar</span>( <span class="php-quote">'var'</span> );</pre>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/joomla-substitue-for-_get-and-_post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TinyMCE Joomla Read more problem</title>
		<link>http://breathing-spring.com/tinymce-joomla-read-more-problem/</link>
		<comments>http://breathing-spring.com/tinymce-joomla-read-more-problem/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 06:51:17 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=49</guid>
		<description><![CDATA[Giving an hr instead of read more?
The problem seems to be that TinyMCE is cleaning the backslash from the

 
&#60;hr id="system-readmore" /&#62;

tag upon save, even though the &#8216;cleanup on save&#8217; plugin parameter has been set to &#8216;Never&#8217;.
Or, has the joomla code that checks for the readmore tag when it writes an article to the database ]]></description>
			<content:encoded><![CDATA[<p>Giving an hr instead of read more?</p>
<p>The problem seems to be that TinyMCE is cleaning the backslash from the</p>
<dl class="codebox">
<dt> </dt>
<dd><code>&lt;hr id="system-readmore" /&gt;</code></dd>
</dl>
<p>tag upon save, even though the &#8216;cleanup on save&#8217; plugin parameter has been set to &#8216;Never&#8217;.</p>
<p>Or, has the joomla code that checks for the readmore tag when it writes an article to the database become more restrictive? Before did it recognize</p>
<dl class="codebox">
<dt> </dt>
<dd><code>&lt;hr id="system-readmore"&gt;</code></dd>
</dl>
<p>and now it only recognizes</p>
<dl class="codebox">
<dt> </dt>
<dd><code>&lt;hr id="system-readmore" /&gt;</code></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/tinymce-joomla-read-more-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rokbridge Fatal Error in distribution/includes/db/dbal.php on line 602</title>
		<link>http://breathing-spring.com/rokbridge-fatal-error-in-distributionincludesdbdbalphp-on-line-602/</link>
		<comments>http://breathing-spring.com/rokbridge-fatal-error-in-distributionincludesdbdbalphp-on-line-602/#comments</comments>
		<pubDate>Wed, 03 Sep 2008 08:20:28 +0000</pubDate>
		<dc:creator>Lamis</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://breathing-spring.com/?p=45</guid>
		<description><![CDATA[In /plugins/user/phpbb3.php, replace line 92:



if(!isset($userid)) {

with:



if (( ! isset( $userid )) &#124;&#124; ( strlen( $userid ) == 0 )) {              // it's set, but has no value

It&#8217;s the only (isset($userid)) in the file, so should be easy to find.
]]></description>
			<content:encoded><![CDATA[<p>In /plugins/user/phpbb3.php, replace line 92:</p>
<dl class="codebox">
<dt>
<a onclick="selectCode(this); return false;" href="http://www.rocketwerx.com/forum/viewtopic.php?f=22&amp;t=807&amp;st=0&amp;sk=t&amp;sd=a&amp;start=40#"></a></dt>
<dd><code>if(!isset($userid)) {</code></dd>
</dl>
<p>with:</p>
<dl class="codebox">
<dt>
<a onclick="selectCode(this); return false;" href="http://www.rocketwerx.com/forum/viewtopic.php?f=22&amp;t=807&amp;st=0&amp;sk=t&amp;sd=a&amp;start=40#"></a></dt>
<dd><code>if (( ! isset( $userid )) || ( strlen( $userid ) == 0 )) {              // it's set, but has no value</code></dd>
</dl>
<p>It&#8217;s the only (isset($userid)) in the file, so should be easy to find.</p>
]]></content:encoded>
			<wfw:commentRss>http://breathing-spring.com/rokbridge-fatal-error-in-distributionincludesdbdbalphp-on-line-602/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
