fix for 1913: Remove opaclargeimage system preference
[koha_fer] / admin / systempreferences.pl
index 92b426f..d7a22e6 100755 (executable)
@@ -69,6 +69,7 @@ my %tabsysprefs;
     $tabsysprefs{gist}="Acquisitions";
     $tabsysprefs{emailPurchaseSuggestions}="Acquisitions";
        $tabsysprefs{RenewSerialAddsSuggestion}="Acquisitions";
+    $tabsysprefs{serialsadditems}="Acquisitions";
 
 # Admin
     $tabsysprefs{singleBranchMode}="Admin";
@@ -147,6 +148,10 @@ my %tabsysprefs;
     $tabsysprefs{previousIssuesDefaultSortOrder}="Circulation";
     $tabsysprefs{todaysIssuesDefaultSortOrder}="Circulation";
     $tabsysprefs{HomeOrHoldingBranch}="Circulation";
+       $tabsysprefs{RandomizeHoldsQueueWeight}="Circulation";
+       $tabsysprefs{StaticHoldsQueueWeight}="Circulation";
+    $tabsysprefs{AllowOnShelfHolds}="Circulation";
+    $tabsysprefs{AllowHoldsOnDamagedItems}="Circulation";
 
 # Staff Client
     $tabsysprefs{TemplateEncoding}="StaffClient";
@@ -177,6 +182,9 @@ my %tabsysprefs;
     $tabsysprefs{AddPatronLists}="Patrons";
     $tabsysprefs{PatronsPerPage}="Patrons";
     $tabsysprefs{ExtendedPatronAttributes}="Patrons";
+    $tabsysprefs{AutoEmailOpacUser}="Patrons";
+    $tabsysprefs{AutoEmailPrimaryAddress}="Patrons";
+    $tabsysprefs{EnhancedMessagingPreferences}="Patrons";
 
 # I18N/L10N
     $tabsysprefs{dateformat}="I18N/L10N";
@@ -200,6 +208,7 @@ my %tabsysprefs;
     $tabsysprefs{sortbynonfiling}="Searching";
     $tabsysprefs{QueryAutoTruncate}="Searching";
     $tabsysprefs{QueryRemoveStopwords}="Searching";
+    $tabsysprefs{AdvancedSearchTypes}="Searching";
 
 # EnhancedContent
    $tabsysprefs{AmazonContent}="EnhancedContent";
@@ -209,6 +218,7 @@ my %tabsysprefs;
    $tabsysprefs{AmazonSimilarItems}="EnhancedContent";
    $tabsysprefs{OPACAmazonContent}="EnhancedContent";
    $tabsysprefs{OPACAmazonSimilarItems}="EnhancedContent";
+
 # Baker & Taylor 
    $tabsysprefs{BakerTaylorBookstoreURL} = 'EnhancedContent';
    $tabsysprefs{BakerTaylorEnabled}      = 'EnhancedContent';
@@ -231,13 +241,13 @@ my %tabsysprefs;
    $tabsysprefs{TagsShowOnList}         = 'EnhancedContent';
    $tabsysprefs{TagsModeration}         = 'EnhancedContent';
    $tabsysprefs{GoogleJackets}                         = 'EnhancedContent';
+   $tabsysprefs{AuthorisedValueImages}  = "EnhancedContent";
 
 # OPAC
     $tabsysprefs{BiblioDefaultView}="OPAC";
     $tabsysprefs{LibraryName}="OPAC";
     $tabsysprefs{opaccolorstylesheet}="OPAC";
     $tabsysprefs{opaccredits}="OPAC";
-    $tabsysprefs{opaclargeimage}="OPAC";
     $tabsysprefs{opaclayoutstylesheet}="OPAC";
     $tabsysprefs{OpacNav}="OPAC";
     $tabsysprefs{opacsmallimage}="OPAC";
@@ -246,9 +256,8 @@ my %tabsysprefs;
     $tabsysprefs{opacuserjs}="OPAC";
     $tabsysprefs{SubscriptionHistory}="OPAC";
     $tabsysprefs{opacheader}="OPAC";
-
-    $tabsysprefs{hideBiblioNumber}="OPAC";
     $tabsysprefs{noOPACUserLogin}="OPAC";
+    $tabsysprefs{hideBiblioNumber}="OPAC";
     $tabsysprefs{OPACDisplayExtendedSubInfo}="OPAC";
     $tabsysprefs{OpacMainUserBlock}="OPAC";
     $tabsysprefs{OPACSubscriptionDisplay}="OPAC";
@@ -280,6 +289,10 @@ my %tabsysprefs;
     $tabsysprefs{OpacBrowser}="OPAC";
     $tabsysprefs{kohaspsuggest} = "OPAC";
     $tabsysprefs{OpacRenewalAllowed} = "OPAC";
+    $tabsysprefs{OPACItemHolds} = "OPAC";
+    $tabsysprefs{OPACGroupResults}="OPAC";
+    $tabsysprefs{XSLTDetailsDisplay}="OPAC";
+    $tabsysprefs{XSLTResultsDisplay}="OPAC";
 
 # LOGFeatures
     $tabsysprefs{CataloguingLog}  = "Logs";
@@ -315,7 +328,7 @@ sub StringSearch  {
         while (my $data=$sth->fetchrow_hashref){
             $data->{value} =~ s/</&lt;/g;
             $data->{value} =~ s/>/&gt;/g;
-            $data->{value}=substr($data->{value},0,100)."..." if length($data->{value}) >100;
+            $data->{value}=substr($data->{value},0,60)."..." if length($data->{value}) >60;
             push(@results,$data);
             $cnt++;
         }
@@ -329,7 +342,7 @@ sub StringSearch  {
                 while (my $data=$sth->fetchrow_hashref){
                     $data->{value} =~ s/</&lt;/g;
                     $data->{value} =~ s/>/&gt;/g;
-                    $data->{value}=substr($data->{value},0,100)."..." if length($data->{value}) >100;
+                    $data->{value}=substr($data->{value},0,60)."..." if length($data->{value}) >60;
                     push(@results,$data);
                     $cnt++;
                 }
@@ -346,7 +359,7 @@ sub StringSearch  {
         my $sth=$dbh->prepare($strsth);
         $sth->execute();
         while (my $data=$sth->fetchrow_hashref){
-            $data->{value}=substr($data->{value},0,100);
+            $data->{value}=substr($data->{value},0,60);
             push(@results,$data);
             $cnt++;
         }