diff options
-rwxr-xr-x | control-center | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/control-center b/control-center index 9b69af96..43649372 100755 --- a/control-center +++ b/control-center @@ -778,6 +778,10 @@ sub connect_to_site { } } +sub report_bug { + system("drakbug --report drakconf"); +} + sub display_logs { $logs = $log_check_box->active; update_exp(); @@ -827,6 +831,8 @@ sub get_main_menu { ), { path => _("/_Help"), type => '<Branch>' }, + { path => _("/Help")._("/_Report Bug"), + callback => \&report_bug }, { path => _("/Help")._("/_About..."), callback => \&about_mdk_cc } ) |