Welcome Guest, Not a member yet? Register   Sign In
CodeIgniter 1.6.0 "beta"
#31

[eluser]adamp1[/eluser]
Can I ask about the suggestion I made to add to the parse library file. The post is here. The only change is a bit of regex_replace to delete un-used variable replacement tags.

It seems something simple to improve the parser library since without it you either have to do it yourself or use an entire template library, which is overkill If I just want to parse an email.
#32

[eluser]Edemilson Lima[/eluser]
Quote:what happened to 1.5.5? :>

The same that happened to the versions from 1.5.5000001 to 1.5.9999999... :-)
#33

[eluser]rfer[/eluser]
I'm not sure if this is the right place to report a bug, but after trying this new version with Oracle I found out something wrong in the oci8_driver.php file

Code:
function count_all($table = '')

    {

        if ($table == '')

            return '0';



        $query = $this->query($this->_count_string . $this->_protect_identifiers('numrows'). " FROM " . $this->_protect_identifiers($this->dbprefix.$table));
    
        if ($query == FALSE)

            {

            return 0;

            }



        $row = $query->row();

        return $row->NUMROWS;

    }

This gave me an error: SELECT COUNT(1) AS `numrows` FROM `table`

Changing this function to its 1.5.4 equivalent:

Code:
function count_all($table = '')
    {
        if ($table == '')
            return '0';

        $query = $this->query("SELECT COUNT(1) AS numrows FROM ".$table);

        if ($query == FALSE)
            {
            return 0;
            }

        $row = $query->row();
        return $row->NUMROWS;
    }
#34

[eluser]axle_foley00[/eluser]
Derek:

Any chance of adding '1.6.0 beta' in the version list for the Bug Tracker? It would make tracking bugs a little easier for both the dev team and community members (submitting and viewing bugs).
#35

[eluser]Derek Jones[/eluser]
[quote author="axle_foley00" date="1200880385"]Derek:

Any chance of adding '1.6.0 beta' in the version list for the Bug Tracker? It would make tracking bugs a little easier for both the dev team and community members (submitting and viewing bugs).[/quote]

Done, thanks axle_foley00.
#36

[eluser]Sawariya[/eluser]
ohhhhhhhhhhh great..........................
#37

[eluser]gunter[/eluser]
just a question:
I donĀ“t use SVN...
If I install SVN... can I download then all the files at once??
#38

[eluser]zdknudsen[/eluser]
Yes. Smile
#39

[eluser]Prasanna[/eluser]
I am here now to ask a doubt. When i updated my SVN this morning and checked, it seems that in the libraries\loader.php (function _ci_autoloader) the model are loaded after the libraries. But in earlier version the models are loaded first and then the libraries. So what i would like to know is, whether this is going to be remain the same OR will it be changed ?
#40

[eluser]codex[/eluser]
Typo User guide: Email class

Code:
The Email Helper provides some assitive functions

I think this should be assistive?




Theme © iAndrew 2016 - Forum software by © MyBB