[Patches] [PATCH] Bug 7117: Bug 7117 - Small display problems when organising
koha-patchbot at kohaaloha.com
koha-patchbot at kohaaloha.com
Fri Nov 4 19:55:39 NZDT 2011
From: Katrin Fischer <Katrin.Fischer.83 at web.de>
Date: Mon, 31 Oct 2011 01:06:17 +0100
Subject: [PATCH] Bug 7117: Bug 7117 - Small display problems when organising
suggestion tabs by name
To test:
1) Add some suggestions
2) Go to suggestions in staff
3) Choose from filters 'suggested by' or 'managed by'
4) Compare names shown on tabs with names in list of suggestions
Before patch: tab name has the wrong order, while list name is correct.
After patch: all names should be consistent and correct.
---
suggestion/suggestion.pl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/suggestion/suggestion.pl b/suggestion/suggestion.pl
index d00b632..18f71b0 100755
--- a/suggestion/suggestion.pl
+++ b/suggestion/suggestion.pl
@@ -59,7 +59,7 @@ sub GetCriteriumDesc{
if ($displayby =~/suggestedby/||$displayby =~/managedby/||$displayby =~/acceptedby/){
my $borr=C4::Members::GetMember(borrowernumber=>$criteriumvalue);
return "" unless $borr;
- return $$borr{firstname} . ", " . $$borr{surname};
+ return $$borr{surname} . ", " . $$borr{firstname};
}
if ( $displayby =~ /budgetid/) {
my $budget = GetBudget($criteriumvalue);
--
1.7.5.4
More information about the Patches
mailing list