Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
abae4d04
Commit
abae4d04
authored
May 01, 2011
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DDC-1119 - Remove call to not existing function.
parent
79e305a6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
MySqlPlatform.php
lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
+1
-1
doctrine-common
lib/vendor/doctrine-common
+1
-1
No files found.
lib/Doctrine/DBAL/Platforms/MySqlPlatform.php
View file @
abae4d04
...
@@ -370,7 +370,7 @@ class MySqlPlatform extends AbstractPlatform
...
@@ -370,7 +370,7 @@ class MySqlPlatform extends AbstractPlatform
$optionStrings
=
array
();
$optionStrings
=
array
();
if
(
isset
(
$options
[
'comment'
]))
{
if
(
isset
(
$options
[
'comment'
]))
{
$optionStrings
[
'comment'
]
=
'COMMENT = '
.
$
this
->
quote
(
$options
[
'comment'
],
'text'
)
;
$optionStrings
[
'comment'
]
=
'COMMENT = '
.
$
options
[
'comment'
]
;
}
}
if
(
isset
(
$options
[
'charset'
]))
{
if
(
isset
(
$options
[
'charset'
]))
{
$optionStrings
[
'charset'
]
=
'DEFAULT CHARACTER SET '
.
$options
[
'charset'
];
$optionStrings
[
'charset'
]
=
'DEFAULT CHARACTER SET '
.
$options
[
'charset'
];
...
...
doctrine-common
@
a46c6180
Subproject commit
ffd9dc7460bb90ebfe1f98388e5eceb03a934e9a
Subproject commit
a46c6180f96647fdd66e2c8f2771d61ecebe6a3f
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