@@ -, +, @@ - Removed leftover test values from syspref.sql - Removed extra $ in serial-search.tt - Removed leftover warn in serial-search.pl --- .../data/mysql/atomicupdate/BugUndef-SerialSortIgnoreWords.sql | 2 +- installer/data/mysql/mandatory/sysprefs.sql | 2 +- serials/serials-search.pl | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) --- a/installer/data/mysql/atomicupdate/BugUndef-SerialSortIgnoreWords.sql +++ a/installer/data/mysql/atomicupdate/BugUndef-SerialSortIgnoreWords.sql @@ -1, +1, @@ -INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('SerialSortIgnoreWords','',NULL,'Words to ignore in serial search','Free'); +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 +++ a/installer/data/mysql/mandatory/sysprefs.sql @@ -604,7 +604,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('SendAllEmailsTo','',NULL,'All emails will be redirected to this email if it is not empty','free'), ('SeparateHoldings','0',NULL,'Separate current branch holdings from other holdings','YesNo'), ('SeparateHoldingsBranch','homebranch','homebranch|holdingbranch','Branch used to separate holdings','Choice'), -('SerialSortIgnoreWords','des du de la le les leur d l an a the',NULL,'Words to ignore in serial search','Free'), +('SerialSortIgnoreWords','',NULL,'Words to ignore in serial search','Free'), ('SessionRestrictionByIP','1','Check for change in remote IP address for session security. Disable only when remote IP address changes frequently.','','YesNo'), ('SessionStorage','mysql','mysql|Pg|tmp','Use database or a temporary file for storing session data','Choice'), ('ShelfBrowserUsesCcode','1','0','Use the item collection code when finding items for the shelf browser.','YesNo'), --- a/serials/serials-search.pl +++ a/serials/serials-search.pl @@ -171,8 +171,6 @@ for my $sub ( @subscriptions ) { $subsctitle =~ s/^\s+//; $sub->{titlesort} = ucfirst($subsctitle); - warn $subsctitle; - unless ( $sub->{closed} ) { push @openedsubscriptions, $sub unless $sub->{cannotdisplay}; --