diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2017-09-19 19:22:16 +0200 | 
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2017-09-19 19:22:16 +0200 | 
| commit | d095e620c1b36d68206139c082881b32a5f6a6e6 (patch) | |
| tree | b2f69282dfb75f3ffe1aeb138953ff56eb0d22be /phpBB/phpbb/db | |
| parent | cd14b2cdf85bd458cb94b780bdf984c485034237 (diff) | |
| parent | 3574832ddbdda08f100826a8c77db2e8cfdfd118 (diff) | |
| download | forums-d095e620c1b36d68206139c082881b32a5f6a6e6.tar forums-d095e620c1b36d68206139c082881b32a5f6a6e6.tar.gz forums-d095e620c1b36d68206139c082881b32a5f6a6e6.tar.bz2 forums-d095e620c1b36d68206139c082881b32a5f6a6e6.tar.xz forums-d095e620c1b36d68206139c082881b32a5f6a6e6.zip  | |
Merge pull request #4963 from DavidIQ/ticket/15368
[ticket/15368] Correct function reference in MSSQL db tools
Diffstat (limited to 'phpBB/phpbb/db')
| -rw-r--r-- | phpBB/phpbb/db/tools/mssql.php | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/tools/mssql.php b/phpBB/phpbb/db/tools/mssql.php index d31aa2ba0b..23b49aab44 100644 --- a/phpBB/phpbb/db/tools/mssql.php +++ b/phpBB/phpbb/db/tools/mssql.php @@ -524,7 +524,7 @@ class mssql extends tools  	{  		$statements = array(); -		if ($this->is_sql_server_2000()) +		if ($this->mssql_is_sql_server_2000())  		{  			$this->check_index_name_length($table_name, $index_name);  		} @@ -541,7 +541,7 @@ class mssql extends tools  	{  		$statements = array(); -		if ($this->is_sql_server_2000()) +		if ($this->mssql_is_sql_server_2000())  		{  			$this->check_index_name_length($table_name, $index_name);  		}  | 
