[Commits] [SCM] claws branch, master, updated. 3.11.0-4-g7be200e
claws at claws-mail.org
claws at claws-mail.org
Tue Oct 21 12:55:54 CEST 2014
The branch, master has been updated
via 7be200e62e4ea1debbbec0c17fd0c41cc1946648 (commit)
from 0e4799d581d30ddf0966792a1838c621c9a81340 (commit)
Summary of changes:
src/plugins/rssyl/rssyl_update_feed.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit 7be200e62e4ea1debbbec0c17fd0c41cc1946648
Author: Paul <paul at claws-mail.org>
Date: Tue Oct 21 11:55:42 2014 +0100
fix bug 3306, 'HTML tag </b> is not always rendered in error dialog'
diff --git a/src/plugins/rssyl/rssyl_update_feed.c b/src/plugins/rssyl/rssyl_update_feed.c
index f7b4f54..603d000 100644
--- a/src/plugins/rssyl/rssyl_update_feed.c
+++ b/src/plugins/rssyl/rssyl_update_feed.c
@@ -119,9 +119,9 @@ void rssyl_fetch_feed(RFetchCtx *ctx, gboolean verbose)
/* libcurl wasn't happy */
debug_print("RSSyl: Error: %s\n", ctx->error);
if( verbose )
- alertpanel_error(C_("First parameter is URL, second is error text",
+ alertpanel_error(g_markup_printf_escaped(C_("First parameter is URL, second is error text",
"Error fetching feed at\n<b>%s</b>:\n\n%s"),
- feed_get_url(ctx->feed), ctx->error);
+ feed_get_url(ctx->feed), ctx->error));
log_error(LOG_PROTOCOL, RSSYL_LOG_ERROR_FETCH, ctx->feed->url, ctx->error);
@@ -131,8 +131,8 @@ void rssyl_fetch_feed(RFetchCtx *ctx, gboolean verbose)
/* libcurl was happy, but libfeed wasn't */
debug_print("RSSyl: Error reading feed\n");
if( verbose )
- alertpanel_error(_("No valid feed found at\n<b>%s</b>"),
- feed_get_url(ctx->feed));
+ alertpanel_error(g_markup_printf_escaped(_("No valid feed found at\n<b>%s</b>"),
+ feed_get_url(ctx->feed)));
log_error(LOG_PROTOCOL, RSSYL_LOG_ERROR_NOFEED,
feed_get_url(ctx->feed));
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list