34 lines
1.8 KiB
Diff
34 lines
1.8 KiB
Diff
From 4b6b94acc941df441bdd80f570a86fc44df0142b Mon Sep 17 00:00:00 2001
|
|
From: Jakub Filak <jfilak@redhat.com>
|
|
Date: Mon, 10 Feb 2014 16:08:24 +0100
|
|
Subject: [LIBREPORT PATCH 24/24] use a KB article URL instead of upstream wiki
|
|
URL
|
|
|
|
Closes rhbz#1029438
|
|
|
|
Signed-off-by: Jakub Filak <jfilak@redhat.com>
|
|
---
|
|
src/gui-wizard-gtk/wizard.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/gui-wizard-gtk/wizard.c b/src/gui-wizard-gtk/wizard.c
|
|
index e962c11..943b2d6 100644
|
|
--- a/src/gui-wizard-gtk/wizard.c
|
|
+++ b/src/gui-wizard-gtk/wizard.c
|
|
@@ -299,10 +299,10 @@ static void show_event_opt_error_dialog(const char *event_name)
|
|
{
|
|
event_config_t *ec = get_event_config(event_name);
|
|
char *message = xasprintf(_("%s is not properly configured. You can configure it now or provide the required information later.\n\n"
|
|
- "Read more about the configuration at: https://fedorahosted.org/abrt/wiki/AbrtConfiguration"),
|
|
+ "Read more about the configuration at: https://access.redhat.com/site/articles/718083"),
|
|
ec_get_screen_name(ec));
|
|
char *markup_message = xasprintf(_("<b>%s</b> is not properly configured. You can configure it now or provide the required information later.\n\n"
|
|
- "<a href=\"https://fedorahosted.org/abrt/wiki/AbrtConfiguration\">Read more about the configuration</a>"),
|
|
+ "<a href=\"https://access.redhat.com/site/articles/718083\">Read more about the configuration</a>"),
|
|
ec_get_screen_name(ec));
|
|
GtkWidget *wrong_settings = g_top_most_window = gtk_message_dialog_new(GTK_WINDOW(g_wnd_assistant),
|
|
GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
|
|
--
|
|
1.8.3.1
|
|
|