Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
b2402f40
Commit
b2402f40
authored
Jan 19, 2009
by
Dries
Browse files
- Patch
#360982
by Damien Tournoud: fixed typo in SQLite transacation detection code.
parent
507836ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/database/sqlite/database.inc
View file @
b2402f40
...
...
@@ -23,7 +23,7 @@ public function __construct(array $connection_options = array()) {
$this
->
statementClass
=
NULL
;
// This driver defaults to transaction support, except if explicitly passed FALSE.
$this
->
transactionSupport
=
!
isset
(
$connection_options
[
'transactions'
])
||
$connection_options
[
'transactions'
]
=
==
FALSE
;
$this
->
transactionSupport
=
!
isset
(
$connection_options
[
'transactions'
])
||
$connection_options
[
'transactions'
]
!
==
FALSE
;
parent
::
__construct
(
'sqlite:'
.
$connection_options
[
'database'
],
''
,
''
,
array
(
// Force column names to lower case.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment