From d78efc08631bec76727f2458e1162229b40ea12d Mon Sep 17 00:00:00 2001 From: Alexander Butenko Date: Fri, 23 Jul 2010 09:50:10 -0400 Subject: [PATCH] Duplicate day name for history panel folder names --- panels/midori-history.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/midori-history.c b/panels/midori-history.c index 314280dd..1af95429 100644 --- a/panels/midori-history.c +++ b/panels/midori-history.c @@ -140,7 +140,7 @@ midori_history_format_date (KatzeItem *item) else if (age > 7 || age < 0) { strftime (token, sizeof (token), "%x", localtime ((time_t*)&day)); - sdate = token; + sdate = g_strdup (token); } else if (age > 6) sdate = _("A week ago");