mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 22:38:52 +00:00
Workaround for LOWER -> LCASE for msaccess - mark 2
git-svn-id: file:///svn/phpbb/trunk@284 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
12d405c8a3
commit
99fbeda889
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@ class sql_db
|
||||||
{
|
{
|
||||||
if($this->db_type == "msaccess")
|
if($this->db_type == "msaccess")
|
||||||
{
|
{
|
||||||
echo $query = preg_replace("/LOWER\(/", "LCASE(", $query);
|
$query = preg_replace("/LOWER\(/", "LCASE(", $query);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!eregi("^INSERT ",$query))
|
if(!eregi("^INSERT ",$query))
|
||||||
|
|
Loading…
Add table
Reference in a new issue