- fix: fixed an error in the groups/db system where removing a dblink connected to a group would produce a fatal error

This commit is contained in:
JT Smith 2007-04-05 03:43:37 +00:00
parent 268b56b079
commit e1c86d7f95
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,6 @@
7.3.15
- fix: modified Form/Textarea.pm to use -min versions of YUI javascript libraries in order to speed up page load times
- fix: fixed an error in the groups/db system where removing a dblink connected to a group would produce a fatal error
7.3.14

View file

@ -582,7 +582,7 @@ sub getDatabaseUsers {
### Check db database
if ($self->get("dbQuery") && defined $self->get("databaseLinkId")) {
my $dbLink = WebGUI::DatabaseLink->new($self->session,$self->get("databaseLinkId"));
my $dbh = $dbLink->db;
my $dbh = $dbLink->db if (defined $dbLink);
if (defined $dbh) {
my $query = $self->get("dbQuery");
WebGUI::Macro::process($self->session,\$query);