View | Details | Raw Unified | Return to bug 20982
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-shelves.tt (-1 / +1 lines)
Lines 1096-1102 function AdjustRemark() { Link Here
1096
    if( $("#category").length > 0 ) {
1096
    if( $("#category").length > 0 ) {
1097
        category = $("#category").val();
1097
        category = $("#category").val();
1098
    } else {
1098
    } else {
1099
        category = [% category | html %];
1099
        category = "[% category | html %]";
1100
    }
1100
    }
1101
    var perms = $("#allow_changes_from").val();
1101
    var perms = $("#allow_changes_from").val();
1102
1102
(-)a/opac/opac-shelves.pl (-2 / +1 lines)
Lines 434-440 $template->param( Link Here
434
    referer  => $referer,
434
    referer  => $referer,
435
    shelf    => $shelf,
435
    shelf    => $shelf,
436
    messages => \@messages,
436
    messages => \@messages,
437
    category => $category,
437
    category => ($category == 1 || $category == 2) ? $category : "",
438
    print    => scalar $query->param('print') || 0,
438
    print    => scalar $query->param('print') || 0,
439
    listsview => 1,
439
    listsview => 1,
440
);
440
);
441
- 

Return to bug 20982