aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/docs/coding-guidelines.html
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-06-22 23:41:26 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-06-22 23:41:26 +0200
commit80e0851189fa599a36c15659641b5ddfe82715a5 (patch)
tree9a3bda48036018e43e0d9d62717293db180d4b54 /phpBB/docs/coding-guidelines.html
parentd18d3b30c70c0fb48cad14576376ee51671d094e (diff)
parent4f2acbaed2028cc1b5ad96f6eada97b1cc94532f (diff)
downloadforums-80e0851189fa599a36c15659641b5ddfe82715a5.tar
forums-80e0851189fa599a36c15659641b5ddfe82715a5.tar.gz
forums-80e0851189fa599a36c15659641b5ddfe82715a5.tar.bz2
forums-80e0851189fa599a36c15659641b5ddfe82715a5.tar.xz
forums-80e0851189fa599a36c15659641b5ddfe82715a5.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12747] Remove some methods which are not used anymore [ticket/12747] Drop support for Firebird
Diffstat (limited to 'phpBB/docs/coding-guidelines.html')
-rw-r--r--phpBB/docs/coding-guidelines.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/coding-guidelines.html b/phpBB/docs/coding-guidelines.html
index 173c7e5441..98cfe0e717 100644
--- a/phpBB/docs/coding-guidelines.html
+++ b/phpBB/docs/coding-guidelines.html
@@ -736,7 +736,7 @@ static private function f()
<a name="sql"></a><h3>2.iii. SQL/SQL Layout</h3>
<h4>Common SQL Guidelines: </h4>
- <p>All SQL should be cross-DB compatible, if DB specific SQL is used alternatives must be provided which work on all supported DB's (MySQL3/4/5, MSSQL (7.0 and 2000), PostgreSQL (8.3+), Firebird, SQLite, Oracle8, ODBC (generalised if possible)).</p>
+ <p>All SQL should be cross-DB compatible, if DB specific SQL is used alternatives must be provided which work on all supported DB's (MySQL3/4/5, MSSQL (7.0 and 2000), PostgreSQL (8.3+), SQLite, Oracle8, ODBC (generalised if possible)).</p>
<p>All SQL commands should utilise the DataBase Abstraction Layer (DBAL)</p>
<h4>SQL code layout:</h4>