Welcome Guest, Not a member yet? Register   Sign In
CI 1.6.1 -> DB_active_rec.php -> TRUE instead of FALSE in function "or_where_not_in"
#1

[eluser]Unknown[/eluser]
hye,
i am not english. So, sorry for my poor english language.

The bug is localized in the file DB_active_rec.php at line 540

Code:
function or_where_not_in($key = NULL, $values = NULL)
{        
   return $this->_where_in($key, $values, FALSE, 'OR ');
}

The correction is :
Code:
function or_where_not_in($key = NULL, $values = NULL)
{        
    return $this->_where_in($key, $values, TRUE, 'OR ');
}

Best regards


Messages In This Thread
CI 1.6.1 -> DB_active_rec.php -> TRUE instead of FALSE in function "or_where_not_in" - by El Forum - 03-01-2008, 03:50 AM



Theme © iAndrew 2016 - Forum software by © MyBB