Bugzilla – Attachment 6207 Details for
Bug 7083
Show creator name on list of public lists
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Fix for Bug 7083 - [SIGNED-OFF] Show creator name on list of public lists
Fix-for-Bug-7083---SIGNED-OFF-Show-creator-name-on.patch (text/plain), 4.19 KB, created by
Magnus Enger
on 2011-11-04 15:41:42 UTC
(
hide
)
Description:
Fix for Bug 7083 - [SIGNED-OFF] Show creator name on list of public lists
Filename:
MIME Type:
Creator:
Magnus Enger
Created:
2011-11-04 15:41:42 UTC
Size:
4.19 KB
patch
obsolete
>From 27dc56afa87e74e0e311194c45c5177c35f6edd2 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Mon, 24 Oct 2011 11:18:16 -0400 >Subject: [PATCH] Fix for Bug 7083 - [SIGNED-OFF] Show creator name on list of > public lists > >Show the name of the patron who created each list on the list >of public lists. Also: > >- correcting unescaped ampersand in the template >- making conditional a check on a variable that doesn't always > exist, causing noisy errors in the log > >Signed-off-by: Magnus Enger <magnus@enger.priv.no> >After applying the patch a column for "Created by" is added to the display of >public lists, and the errors in the log are silenced. On the "Your lists" >tab, the link on the list name now has an escaped ampersand. >--- > C4/VirtualShelves/Page.pm | 11 ++++++----- > .../prog/en/modules/virtualshelves/shelves.tt | 5 +++-- > 2 files changed, 9 insertions(+), 7 deletions(-) > >diff --git a/C4/VirtualShelves/Page.pm b/C4/VirtualShelves/Page.pm >index 8a17182..4e0aac5 100644 >--- a/C4/VirtualShelves/Page.pm >+++ b/C4/VirtualShelves/Page.pm >@@ -340,11 +340,12 @@ sub shelfpage ($$$$$) { > my $owner = $shelflist->{$element}->{'owner'}; > my $canmanage = ShelfPossibleAction( $loggedinuser, $element, 'manage' ); > my $sortfield = $shelflist->{$element}->{'sortfield'}; >- if ( $sortfield eq 'author' ) { >- $shelflist->{$element}->{"authorsort"} = 'author'; >- } >- if ( $sortfield eq 'year' ) { >- $shelflist->{$element}->{"yearsort"} = 'year'; >+ if ( $sortfield ){ >+ if ( $sortfield eq 'author' ) { >+ $shelflist->{$element}->{"authorsort"} = 'author'; >+ } elsif ( $sortfield eq 'year' ) { >+ $shelflist->{$element}->{"yearsort"} = 'year'; >+ } > } > $shelflist->{$element}->{"viewcategory$category"} = 1; > $shelflist->{$element}->{manageshelf} = $canmanage; >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >index d7a34a1..d8d06ee 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt >@@ -349,7 +349,7 @@ function placeHold () { > <tr><th>List Name</th><th>Contents</th><th>Sort by</th><th>Type</th><th>Options</th></tr> > [% FOREACH shelveslooppri IN shelveslooppriv %] > [% IF ( shelveslooppri.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %] >- <td><a href="shelves.pl?[% IF ( shelveslooppri.showprivateshelves ) %]display=privateshelves&[% END %]viewshelf=[% shelveslooppri.shelf %]&shelfoff=[% shelfoff %]">[% shelveslooppri.shelfname |html %]</a></td> >+ <td><a href="shelves.pl?[% IF ( shelveslooppri.showprivateshelves ) %]display=privateshelves&[% END %]viewshelf=[% shelveslooppri.shelf %]&shelfoff=[% shelfoff %]">[% shelveslooppri.shelfname |html %]</a></td> > <td>[% shelveslooppri.count %] item(s)</td> > <td>[% IF ( shelveslooppri.authorsort ) %]Author[% ELSIF ( shelveslooppri.yearsort ) %]Year[% ELSE %]Title[% END %]</td> > <td>[% IF ( shelveslooppri.viewcategory1 ) %]Private[% END %] >@@ -399,10 +399,11 @@ function placeHold () { > [% IF ( shelvesloop ) %] > <div class="pages">[% pagination_bar %]</div> > <table> >- <tr><th>List Name</th><th>Contents</th><th>Sort By</th><th>Type</th><th>Options</th></tr> >+ <tr><th>List Name</th><th>Created by</th><th>Contents</th><th>Sort By</th><th>Type</th><th>Options</th></tr> > [% FOREACH shelvesloo IN shelvesloop %] > [% IF ( shelvesloo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %] > <td><a href="shelves.pl?viewshelf=[% shelvesloo.shelf %]">[% shelvesloo.shelfname |html %]</a></td> >+ <td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% shelvesloo.owner %]">[% shelvesloo.ownername %]</td> > <td>[% shelvesloo.count %] item(s)</td> > <td>[% IF ( shelvesloo.authorsort ) %]Author[% ELSIF ( shelvesloo.yearsort ) %]Year[% ELSE %]Title[% END %]</td> > <td>[% IF ( shelvesloo.viewcategory1 ) %]Private[% END %] >-- >1.7.5.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 7083
:
6039
| 6207