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/mandatory/sysprefs.sql (-1 / +1 lines)
Lines 590-596 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
590
('SendAllEmailsTo','',NULL,'All emails will be redirected to this email if it is not empty','free'),
590
('SendAllEmailsTo','',NULL,'All emails will be redirected to this email if it is not empty','free'),
591
('SeparateHoldings','0',NULL,'Separate current branch holdings from other holdings','YesNo'),
591
('SeparateHoldings','0',NULL,'Separate current branch holdings from other holdings','YesNo'),
592
('SeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings','Choice'),
592
('SeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings','Choice'),
593
('SerialSortIgnoreWords','des du de la le les leur d l an a the',NULL,'Words to ignore in serial search','Free'),
593
('SerialSortIgnoreWords','',NULL,'Words to ignore in serial search','Free'),
594
('SessionRestrictionByIP','1','Check for change in remote IP address for session security. Disable only when remote IP address changes frequently.','','YesNo'),
594
('SessionRestrictionByIP','1','Check for change in remote IP address for session security. Disable only when remote IP address changes frequently.','','YesNo'),
595
('SessionStorage','mysql','mysql|Pg|tmp','Use database or a temporary file for storing session data','Choice'),
595
('SessionStorage','mysql','mysql|Pg|tmp','Use database or a temporary file for storing session data','Choice'),
596
('ShelfBrowserUsesCcode','1','0','Use the item collection code when finding items for the shelf browser.','YesNo'),
596
('ShelfBrowserUsesCcode','1','0','Use the item collection code when finding items for the shelf browser.','YesNo'),
(-)a/serials/serials-search.pl (-3 lines)
Lines 175-182 for my $sub ( @subscriptions ) { Link Here
175
    $subsctitle =~ s/^\s+//;
175
    $subsctitle =~ s/^\s+//;
176
    $sub->{titlesort} = ucfirst($subsctitle);
176
    $sub->{titlesort} = ucfirst($subsctitle);
177
177
178
    warn $subsctitle;
179
180
     unless ( $sub->{closed} ) {
178
     unless ( $sub->{closed} ) {
181
         push @openedsubscriptions, $sub
179
         push @openedsubscriptions, $sub
182
             unless $sub->{cannotdisplay};
180
             unless $sub->{cannotdisplay};
183
- 

Return to bug 19368