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
Hide whitespace changes
Inline
Side-by-side
includes/database.mysql.inc
View file @
2512ce76
...
...
@@ -5,10 +5,10 @@ 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"
];
}
mysql_pconnect
(
$url
[
"host"
],
$url
[
"user"
],
$url
[
"pass"
])
or
die
(
mysql_error
());
mysql_select_db
(
substr
(
$url
[
"path"
],
1
))
or
die
(
"unable to select database"
);
...
...
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