Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
007d9053
Commit
007d9053
authored
Dec 07, 2008
by
vogelor
Browse files
Fixed a small bug in starting phpmyadmin
parent
273547b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/sites/database_phpmyadmin.php
View file @
007d9053
...
...
@@ -43,7 +43,7 @@ $databaseId = intval($_GET['id']);
/*
* Get the data to connect to the database
*/
$dbData
=
$app
->
db
master
->
queryOneRecord
(
$dbData
=
$app
->
db
->
queryOneRecord
(
"SELECT sys_userid, sys_groupid, sys_perm_user, sys_perm_group, server_id, database_name, database_user, database_password FROM web_database WHERE database_id = "
.
$databaseId
);
...
...
@@ -55,7 +55,7 @@ if ($serverId == 0){
die
(
"No DB-Server found!"
);
}
$serverData
=
$app
->
db
master
->
queryOneRecord
(
$serverData
=
$app
->
db
->
queryOneRecord
(
"SELECT server_name FROM server WHERE server_id = "
.
$serverId
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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