Added success dialog back to connection test method
This commit is contained in:
parent
4acf07da4c
commit
b75209d486
@ -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();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user