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

(-)a/installer/data/mysql/atomicupdate/BugUndef-SerialSortIgnoreWords.sql (-1 / +1 lines)
Line 1 Link Here
1
INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('SerialSortIgnoreWords','',NULL,'Words to ignore in serial search','Free');
1
INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('SerialSortIgnoreWords','',NULL,'Words to ignore in serial search','Free');
(-)a/installer/data/mysql/sysprefs.sql (-1 / +1 lines)
Lines 495-501 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
495
('SelfCheckTimeout','120','','Define the number of seconds before the Web-based Self Checkout times out a patron','Integer'),
495
('SelfCheckTimeout','120','','Define the number of seconds before the Web-based Self Checkout times out a patron','Integer'),
496
('SeparateHoldings','0',NULL,'Separate current branch holdings from other holdings','YesNo'),
496
('SeparateHoldings','0',NULL,'Separate current branch holdings from other holdings','YesNo'),
497
('SeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings','Choice'),
497
('SeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings','Choice'),
498
('SerialSortIgnoreWords','des du de la le les leur d l an a the',NULL,'Words to ignore in serial search','Free'),
498
('SerialSortIgnoreWords','',NULL,'Words to ignore in serial search','Free'),
499
('SessionRestrictionByIP','1','Check for change in remote IP address for session security. Disable only when remote IP address changes frequently.','','YesNo'),
499
('SessionRestrictionByIP','1','Check for change in remote IP address for session security. Disable only when remote IP address changes frequently.','','YesNo'),
500
('SessionStorage','mysql','mysql|Pg|tmp','Use database or a temporary file for storing session data','Choice'),
500
('SessionStorage','mysql','mysql|Pg|tmp','Use database or a temporary file for storing session data','Choice'),
501
('ShelfBrowserUsesCcode','1','0','Use the item collection code when finding items for the shelf browser.','YesNo'),
501
('ShelfBrowserUsesCcode','1','0','Use the item collection code when finding items for the shelf browser.','YesNo'),
(-)a/serials/serials-search.pl (-3 lines)
Lines 140-147 for my $sub ( @subscriptions ) { Link Here
140
    $subsctitle =~ s/^\s+//;
140
    $subsctitle =~ s/^\s+//;
141
    $sub->{titlesort} = ucfirst($subsctitle);
141
    $sub->{titlesort} = ucfirst($subsctitle);
142
142
143
    warn $subsctitle;
144
145
     unless ( $sub->{closed} ) {
143
     unless ( $sub->{closed} ) {
146
         push @openedsubscriptions, $sub
144
         push @openedsubscriptions, $sub
147
             unless $sub->{cannotdisplay};
145
             unless $sub->{cannotdisplay};
148
- 

Return to bug 19368