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
2512ce76
Commit
2512ce76
authored
Oct 24, 2002
by
Dries
Browse files
- Killed a warning. Reported by ax.
parent
c65cfcab
Changes
1
Show whitespace changes
Inline
Side-by-side
includes/database.mysql.inc
View file @
2512ce76
...
...
@@ -5,7 +5,7 @@ function db_connect($url) {
$url
=
parse_url
(
$url
);
// Allow for non-standard MySQL port.
if
(
$url
[
"port"
])
{
if
(
isset
(
$url
[
"port"
])
)
{
$url
[
"host"
]
=
$url
[
"host"
]
.
":"
.
$url
[
"port"
];
}
...
...
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