<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">

    <channel>
    
    <title>Bug Tracker</title>
    <link>http://codeigniter.com/bug_tracker/</link>
    <description></description>
    <dc:language>en</dc:language>
    <dc:creator>andrew@strategicmedia.co.nz</dc:creator>
    <dc:rights>Copyright 2008</dc:rights>
    <dc:date>2008-05-13T06:42:00-06:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>welcome.php still calling fake.php</title>
      <link>http://codeigniter.com/bug_tracker/bug/4518/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/welcomephp_still_calling_fakephp/#When:05:42:00Z</guid>
      <description><![CDATA[<p>controllers/welcome.php
</p>
<p>
Line: 13
</p>]]></description>
      <dc:subject></dc:subject>
      <dc:date>2008-05-13T05:42:00-06:00</dc:date>
    </item>

    <item>
      <title>Session Wont Set in IE7</title>
      <link>http://codeigniter.com/bug_tracker/bug/4517/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/session_wont_set_in_ie7/#When:23:45:01Z</guid>
      <description><![CDATA[<p>A session variable wont be set with IE7 if the session cookie name has an underscore in it.
</p>
<p>
This is a strange bug, at first I was thought to of believed it was a server side issue (clock out of sync). The tech support however did a test and it worked fine for them.
</p>
<p>
There are different results from different people. Hmmm
</p>]]></description>
      <dc:subject>Libraries, Session Class</dc:subject>
      <dc:date>2008-05-12T23:45:01-06:00</dc:date>
    </item>

    <item>
      <title>Mis&#45;spelling which leads to invalid check</title>
      <link>http://codeigniter.com/bug_tracker/bug/4515/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/mis_spelling_which_leads_to_invalid_check/#When:20:22:00Z</guid>
      <description><![CDATA[<p>On line 638 an array of Illegal words are defined, one of which is &#8216;&lt;!CDATA[&#8217;, which should be &#8216;&lt;![CDATA[&#8217; (with the extra bracket after the exclamation mark).
</p>
<p>
Missing this could be a vunerability
</p>]]></description>
      <dc:subject>Libraries, Input and Security Class</dc:subject>
      <dc:date>2008-05-12T20:22:00-06:00</dc:date>
    </item>

    <item>
      <title>$this&#45;&gt;output in display_override Hook</title>
      <link>http://codeigniter.com/bug_tracker/bug/4512/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/this_output_in_display_override_hook/#When:18:44:00Z</guid>
      <description><![CDATA[<p>The user guide states you can use $this-&gt;output-&gt;get_output() in a display_override hook but this doesn&#8217;t work.
<br />
The error given is 
<br />
Message: Undefined property: Display_Hook::$output
<br />
Call to a member function _display() on a non-object
</p>]]></description>
      <dc:subject>User Guide</dc:subject>
      <dc:date>2008-05-11T18:44:00-06:00</dc:date>
    </item>

    <item>
      <title>select bug</title>
      <link>http://codeigniter.com/bug_tracker/bug/4511/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/select_bug/#When:11:27:00Z</guid>
      <description><![CDATA[<p>Undesirable ` quotes
</p>
<p>
I suggest not to quote digital column names <img src="http://ellislab.com/images/smileys/wink.gif" width="19" height="19" alt="wink" style="border:0;" />
</p>]]></description>
      <dc:subject>Libraries, Database Class</dc:subject>
      <dc:date>2008-05-11T11:27:00-06:00</dc:date>
    </item>

    <item>
      <title>Update_string and Insert_string do not escape the key correctly</title>
      <link>http://codeigniter.com/bug_tracker/bug/4509/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/update_string_and_insert_string_do_not_escape_the_key_correctly/#When:12:05:00Z</guid>
      <description><![CDATA[<p>At least for MySQL, if you use the update_string or insert_string with certain keys (e.g. &#8216;desc&#8217; for description) then MySQL will barf and it usually takes a couple of days to figure out why if you havent encountered it before. <img src="http://ellislab.com/images/smileys/smile.gif" width="19" height="19" alt="smile" style="border:0;" />
</p>
<p>
The problem is MySQL thinks its DESC from a ORDER BY.
<br />
Fields in queries should *always* have backticks around them which tell MySQL that its a field.
</p>
<p>
The fix is simple. For the update code, change it to this:
<br />
        foreach($values as $key =&gt; $val)
<br />
        {
<br />
            $valstr[] = &#8220;`$key` = `$val`&#8221;;
<br />
        }
<br />
Insert Code:
<br />
return &#8220;INSERT INTO &#8220;.$this-&gt;_escape_table($table).&#8221; (`&#8221;.implode(&#8217;`, `&#8217;, $keys)."`) VALUES (&#8221;.implode(&#8217;, &#8216;, $values).")";
</p>
<p>
This bug is probably elsewhere in the code but I&#8217;ve only stumbled across it here.
</p>]]></description>
      <dc:subject>Libraries, Database Class</dc:subject>
      <dc:date>2008-05-10T12:05:00-06:00</dc:date>
    </item>

    <item>
      <title>function is_image() Uses its own mime types, rather than mimes.php</title>
      <link>http://codeigniter.com/bug_tracker/bug/4508/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/function_is_image_uses_its_own_mime_types_rather_than_mimesphp/#When:23:19:00Z</guid>
      <description><![CDATA[<p>I would expect to set mime types in the mimes.php file, and have them recognized throughout the system. Currently, I have 
</p>
<p>
&#8216;jpg&#8217;    =&gt;    array(&#8217;image/jpeg&#8217;, &#8216;image/pjpeg&#8217;,&#8217;application/octet-stream&#8217;),
</p>
<p>
set in the mimes.php file&#8230; the addition here being application/octet-stream
</p>
<p>
Upload.php&#8217;s is_image does not recognize application-octet/stream that I set in the mimes.php file however, because it identifies it&#8217;s own mime types. This seems to be inconsistent behaviour.
</p>]]></description>
      <dc:subject>Libraries, File Uploading Class</dc:subject>
      <dc:date>2008-05-09T23:19:00-06:00</dc:date>
    </item>

    <item>
      <title>Default controller bug when installed in subfolder</title>
      <link>http://codeigniter.com/bug_tracker/bug/4507/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/default_controller_bug_when_installed_in_subfolder/#When:14:59:00Z</guid>
      <description><![CDATA[<p>When CodeIgniter is installed in a subfolder (e.g. http://www.my-website.com/ci) the default controller doesn&#8217;t work anymore. When you visit www.my-website.com/ci/index.php it shows a 404 error, but when you visit www.my-website.com/ci/index.php/welcome it shows the right page.
</p>]]></description>
      <dc:subject></dc:subject>
      <dc:date>2008-05-09T14:59:00-06:00</dc:date>
    </item>

    <item>
      <title>Image lib PNG transparency doesn’t work</title>
      <link>http://codeigniter.com/bug_tracker/bug/4506/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/image_lib_png_transparency_doesnt_work/#When:08:44:00Z</guid>
      <description><![CDATA[<p>Watermarking with an overlay transparent 24 bits PNG does not work as expected (After applying the watermark, the transparency of the overlay image is lost on the result image, it’s filled with black or a pseudo-transparency where it should be transparent)
</p>]]></description>
      <dc:subject>Libraries, Image Manipulation Class</dc:subject>
      <dc:date>2008-05-09T08:44:00-06:00</dc:date>
    </item>

    <item>
      <title>Oracle Error Message not working</title>
      <link>http://codeigniter.com/bug_tracker/bug/4504/</link>
      <guid>http://codeigniter.com/bug_tracker/bug/oracle_error_message_not_working/#When:14:29:00Z</guid>
      <description><![CDATA[<p>When i’m using MySQL with CI I’m getting all errors if something gets wrong, but with Oracle, only message that I get is blank.
</p>
<p>
Using CI 1.6.1 &amp; ORA 10g XE
</p>]]></description>
      <dc:subject>Libraries, Database Class</dc:subject>
      <dc:date>2008-05-08T14:29:00-06:00</dc:date>
    </item>

    
    </channel>
</rss>