diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-04-24 22:57:35 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-04-24 22:57:35 +0200 |
commit | d5ea4906ca3a85a278518cc91189176174422bde (patch) | |
tree | f2a13065ee8aad0aac45aaae60457f04893d98fc /phpBB | |
parent | bbc2e6c7b29603ab311828b34f3f55d0a44f0d7f (diff) | |
download | forums-d5ea4906ca3a85a278518cc91189176174422bde.tar forums-d5ea4906ca3a85a278518cc91189176174422bde.tar.gz forums-d5ea4906ca3a85a278518cc91189176174422bde.tar.bz2 forums-d5ea4906ca3a85a278518cc91189176174422bde.tar.xz forums-d5ea4906ca3a85a278518cc91189176174422bde.zip |
[ticket/12012] Move property to the top
PHPBB3-12012
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/db/tools.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/tools.php b/phpBB/phpbb/db/tools.php index 9cd3e64d20..2b0132075b 100644 --- a/phpBB/phpbb/db/tools.php +++ b/phpBB/phpbb/db/tools.php @@ -34,6 +34,12 @@ class tools var $dbms_type_map = array(); /** + * Is the used MS SQL Server a SQL Server 2000? + * @var bool + */ + protected $is_sql_server_2000; + + /** * Get the column types for every database we support * * @return array @@ -2677,8 +2683,6 @@ class tools return $existing_indexes; } - protected $is_sql_server_2000; - /** * Is the used MS SQL Server a SQL Server 2000? * |