From dad2f9d29c5dc329b84cf65ac5d58f0a347ae8a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Tue, 3 Mar 2015 22:06:00 +0100 Subject: [PATCH] Bug 13786 - Strange _AUTHOR_ text in Relative's checkout table To reproduce: Go to Home > Circulation > Checkouts > [a patron who has relatives with checkouts] Select Tab "Relative's checkouts" Result: In Title Column the text by _AUTHOR_ appears, e.g. by _AUTHOR_ Glauser, Friedrich To test: Apply patch and refresh Result: The text _AUTHOR_ no longer appears. The Example above reads by Glauser, Friedrich --- koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc index 20a0dad..9f79502 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/strings.inc @@ -10,7 +10,7 @@ var REASON_UNKNOWN = _("reason unkown"); var TODAYS_CHECKOUTS = _("Today's checkouts"); var PREVIOUS_CHECKOUTS = _("Previous checkouts"); - var BY = _("by _AUTHOR_"); + var BY = _("by "); var ON_HOLD = _("On hold"); var NOT_RENEWABLE = _("Not renewable"); var NOT_RENEWABLE_TOO_SOON = _("No renewal before %s"); -- 1.7.10.4