Don't close the connection for the default link (0) when doing connect checks.
This commit is contained in:
parent
31de49f9d8
commit
6dea4f642a
2 changed files with 2 additions and 1 deletions
|
|
@ -22,6 +22,7 @@
|
|||
- fixed #10683: i18n Asset_Story::crumb_url
|
||||
- fixed #10684: i18n Asset_StoryTopic::deleteIcon
|
||||
- fixed #10685: i18n Asset_StoryTopic::rssUrl
|
||||
- fixed #10686: Can't access Database Links
|
||||
|
||||
7.7.15
|
||||
- fixed #10629: WebGUI::ProfileField create new field bug
|
||||
|
|
|
|||
|
|
@ -326,7 +326,7 @@ sub www_listDatabaseLinks {
|
|||
}
|
||||
else {
|
||||
$output .= $i18n->get('ok');
|
||||
$connection->disconnect;
|
||||
$connection->disconnect unless $id eq '0';
|
||||
}
|
||||
$output .='</td></tr>';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue