Added success dialog back to connection test method

This commit is contained in:
Timothy Warren 2012-03-07 11:37:13 -05:00
parent 4acf07da4c
commit b75209d486
1 changed files with 15 additions and 0 deletions

View File

@ -268,7 +268,22 @@ class DB_Info_Widget extends GtkTable {
);
$dialog->run();
$dialog->destroy();
return;
}
// Successful Connection?
// Tell the user!
$dialog = new GTKMessageDialog(
NULL,
Gtk::DIALOG_MODAL,
Gtk::MESSAGE_INFO,
Gtk::BUTTONS_OK,
"Successfully connected"
);
$dialog->run();
$dialog->destroy();
}
/**