diff options
author | David M <davidmj@users.sourceforge.net> | 2006-04-24 22:13:52 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-04-24 22:13:52 +0000 |
commit | a279978718c6d21523b5603fde6cf67a91d5ca8c (patch) | |
tree | 1a0e1925c57fca440ed8d6ab6decb2cdcef8c067 /phpBB/install | |
parent | b622c0f31a67b76aa6c97ba5ccad9ae221c0c033 (diff) | |
download | forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar.gz forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar.bz2 forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.tar.xz forums-a279978718c6d21523b5603fde6cf67a91d5ca8c.zip |
- Tuples? Nah,
- Install works w/ Oracle
- Got the queries in the database acp to conform to the CS
- profile acp now creates the proper alter column statement depending on the dbal
git-svn-id: file:///svn/phpbb/trunk@5842 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/install.php | 4 | ||||
-rwxr-xr-x | phpBB/install/install_install.php | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index 0d8dd8b84a..343fc50221 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -1122,6 +1122,10 @@ if ($stage == 3) $sql_query = str_replace('module_name', '"module_name"', $sql_query); break; + case 'oracle': + remove_remarks($sql_query); + break; + default: //$sql_query = preg_replace('#\# MSSQL IDENTITY (phpbb_[a-z_]+) (ON|OFF) \##s', '', $sql_query); } diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 2b36622174..2c67ca6172 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -935,6 +935,10 @@ class install_install extends module $sql_query = str_replace('module_name', '"module_name"', $sql_query); break; + case 'oracle': + remove_remarks($sql_query); + break; + default: //$sql_query = preg_replace('#\# MSSQL IDENTITY (phpbb_[a-z_]+) (ON|OFF) \##s', '', $sql_query); } |