mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
git-svn-id: file:///svn/phpbb/trunk@7778 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
c57f28e273
commit
f81bb91eca
3 changed files with 4 additions and 2 deletions
|
@ -286,6 +286,7 @@ p a {
|
|||
<li>[Fix] Use the localised guest name for quotes (Bug #12483)</li>
|
||||
<li>[Fix] Added post anchor to links in default warning message (Bug #12489)</li>
|
||||
<li>[Fix] Allow 5 digits in editing time fields (Bug #12489)</li>
|
||||
<li>[Fix] MS SQL DBAL drivers now write over extension limitations, they are too low for most installations (Bug #12415)</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
|
|
@ -36,6 +36,8 @@ class dbal_mssql extends dbal
|
|||
$this->dbname = $database;
|
||||
|
||||
@ini_set('mssql.charset', 'UTF-8');
|
||||
@ini_set('mssql.textlimit', 2147483647);
|
||||
@ini_set('mssql.textsize', 2147483647);
|
||||
|
||||
$this->db_connect_id = ($this->persistency) ? @mssql_pconnect($this->server, $this->user, $sqlpassword, $new_link) : @mssql_connect($this->server, $this->user, $sqlpassword, $new_link);
|
||||
|
||||
|
|
|
@ -43,8 +43,7 @@ class dbal_mssql_odbc extends dbal
|
|||
$this->server = $sqlserver . (($port) ? ':' . $port : '');
|
||||
$this->dbname = $database;
|
||||
|
||||
//
|
||||
// @ini_set('odbc.defaultlrl', '32M');
|
||||
@ini_set('odbc.defaultlrl', 65536);
|
||||
|
||||
$this->db_connect_id = ($this->persistency) ? @odbc_pconnect($this->server, $this->user, $sqlpassword) : @odbc_connect($this->server, $this->user, $sqlpassword);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue