RSSyl: fix markup escaping in one more alertpanel_error in rssyl_update_feed()
authorAndrej Kacian <ticho@claws-mail.org>
Tue, 21 Oct 2014 15:08:27 +0000 (17:08 +0200)
committerAndrej Kacian <ticho@claws-mail.org>
Tue, 21 Oct 2014 15:08:27 +0000 (17:08 +0200)
src/plugins/rssyl/rssyl_update_feed.c

index 603d000e93dab667161ffa815a0345680e05e03e..7f032fac072a657ec3f65cfef5a0f319c6a5e737 100644 (file)
@@ -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<b>%s</b>\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<b>%s</b>\n\nPlease contact developers, this should not happen."),
+                                       feed_get_url(ctx->feed)));
 
                log_error(LOG_PROTOCOL, RSSYL_LOG_ERROR_PROC, ctx->feed->url);
        }