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

(-)a/circ/circulation.pl (-4 lines)
Lines 114-123 if (C4::Context->preference("DisplayClearScreenButton")) { Link Here
114
    $template->param(DisplayClearScreenButton => 1);
114
    $template->param(DisplayClearScreenButton => 1);
115
}
115
}
116
116
117
if (C4::Context->preference("UseTablesortForCirc")) {
118
    $template->param(UseTablesortForCirc => 1);
119
}
120
121
my $barcode        = $query->param('barcode') || q{};
117
my $barcode        = $query->param('barcode') || q{};
122
$barcode =~  s/^\s*|\s*$//g; # remove leading/trailing whitespace
118
$barcode =~  s/^\s*|\s*$//g; # remove leading/trailing whitespace
123
119
(-)a/installer/data/mysql/sysprefs.sql (-1 lines)
Lines 410-416 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
410
('UseICU','0','1','Tell Koha if ICU indexing is in use for Zebra or not.','YesNo'),
410
('UseICU','0','1','Tell Koha if ICU indexing is in use for Zebra or not.','YesNo'),
411
('UseKohaPlugins','0','','Enable or disable the ability to use Koha Plugins.','YesNo'),
411
('UseKohaPlugins','0','','Enable or disable the ability to use Koha Plugins.','YesNo'),
412
('UseQueryParser','0',NULL,'If enabled, try to use QueryParser for queries.','YesNo'),
412
('UseQueryParser','0',NULL,'If enabled, try to use QueryParser for queries.','YesNo'),
413
('UseTablesortForCirc','0','','If on, use the JQuery tablesort function on the list of current borrower checkouts on the circulation page.  Note that the use of this function may slow down circ for patrons with may checkouts.','YesNo'),
414
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
413
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
415
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
414
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
416
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
415
('viewLabeledMARC','0','','Allow display of labeled MARC view of bibiographic records','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-6 lines)
Lines 40-51 Circulation: Link Here
40
                  desc: latest to earliest
40
                  desc: latest to earliest
41
            - due date.
41
            - due date.
42
        -
42
        -
43
            - pref: UseTablesortForCirc
44
              choices:
45
                  yes: "Enable"
46
                  no: "Don't enable"
47
            - "the sorting of current patron checkouts on the circulation screen. <br/>NOTE: Enabling this function may slow down circulation time for patrons with many checkouts."
48
        -
49
            - pref: soundon
43
            - pref: soundon
50
              choices: 
44
              choices: 
51
                 yes: "Enable"
45
                 yes: "Enable"
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-2 lines)
Lines 38-44 var relatives_borrowernumbers = new Array(); Link Here
38
38
39
var MSG_ADD_MESSAGE = _("Add a new message");
39
var MSG_ADD_MESSAGE = _("Add a new message");
40
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
40
var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
41
[% IF ( UseTablesortForCirc && dateformat == 'metric' ) %]dt_add_type_uk_date();[% END %]
42
[% IF ( borrowernumber ) %]if($.cookie("holdfor") != [% borrowernumber %]){ $.cookie("holdfor",null, { path: "/", expires: 0 }); }[% ELSE %]$.cookie("holdfor",null, { path: "/", expires: 0 });[% END %]
41
[% IF ( borrowernumber ) %]if($.cookie("holdfor") != [% borrowernumber %]){ $.cookie("holdfor",null, { path: "/", expires: 0 }); }[% ELSE %]$.cookie("holdfor",null, { path: "/", expires: 0 });[% END %]
43
[% UNLESS ( borrowernumber ) %][% UNLESS ( CGIselectborrower ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %][% END %]
42
[% UNLESS ( borrowernumber ) %][% UNLESS ( CGIselectborrower ) %]window.onload=function(){ $('#findborrower').focus(); };[% END %][% END %]
44
43
45
- 

Return to bug 11703