diff options
author | Daouda Lo <daouda@mandriva.com> | 2002-08-05 14:36:09 +0000 |
---|---|---|
committer | Daouda Lo <daouda@mandriva.com> | 2002-08-05 14:36:09 +0000 |
commit | 2220401e211e5dd3fd0a9e8e222790071b0ad11d (patch) | |
tree | e8ed3aff9a7a3e277919a10a06d52bb4ad9ed237 | |
parent | 3497d4a389ed8b95bf7a4ee92b8d432bed6eeb4f (diff) | |
download | control-center-2220401e211e5dd3fd0a9e8e222790071b0ad11d.tar control-center-2220401e211e5dd3fd0a9e8e222790071b0ad11d.tar.gz control-center-2220401e211e5dd3fd0a9e8e222790071b0ad11d.tar.bz2 control-center-2220401e211e5dd3fd0a9e8e222790071b0ad11d.tar.xz control-center-2220401e211e5dd3fd0a9e8e222790071b0ad11d.zip |
- do not commit broken thins aka fix typo
-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 } ) |