Try to use ubuntu-bug if it exists

This commit is contained in:
Christian Dywan 2012-03-22 21:26:49 +01:00
parent 9751a60dbc
commit ae7a09a087

View file

@ -4812,7 +4812,7 @@ _action_help_link_activate (GtkAction* action,
MidoriBrowser* browser)
{
const gchar* action_name;
const gchar* uri;
const gchar* uri = NULL;
gint n;
#if defined (G_OS_WIN32) && defined (DOCDIR)
gchar* free_uri = NULL;
@ -4847,9 +4847,10 @@ _action_help_link_activate (GtkAction* action,
#endif
}
else if (!strncmp ("HelpBugs", action_name, 8))
{
if (!g_spawn_command_line_async ("ubuntu-bug " PACKAGE_NAME, NULL))
uri = PACKAGE_BUGREPORT;
else
uri = NULL;
}
if (uri)
{