From: Andrej Kacian Date: Tue, 21 Oct 2014 15:08:27 +0000 (+0200) Subject: RSSyl: fix markup escaping in one more alertpanel_error in rssyl_update_feed() X-Git-Tag: 3.11.1~10 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=ae9762c4e07fe6eb3c71176d080846190e2cc306 RSSyl: fix markup escaping in one more alertpanel_error in rssyl_update_feed() --- diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c index 603d000e9..7f032fac0 100644 --- a/src/plugins/rssyl/rssyl_update_feed.c +++ b/src/plugins/rssyl/rssyl_update_feed.c @@ -218,8 +218,8 @@ gboolean rssyl_update_feed(RFolderItem *ritem, gboolean verbose) /* both libcurl and libfeed were happy, but we weren't */ debug_print("RSSyl: Error processing feed\n"); if( verbose ) - alertpanel_error(_("Couldn't process feed at\n%s\n\nPlease contact developers, this should not happen."), - feed_get_url(ctx->feed)); + alertpanel_error(g_markup_printf_escaped(_("Couldn't process feed at\n%s\n\nPlease contact developers, this should not happen."), + feed_get_url(ctx->feed))); log_error(LOG_PROTOCOL, RSSYL_LOG_ERROR_PROC, ctx->feed->url); }