removing hardcoded (english) string
authorPaul Poulain <paul.poulain@biblibre.com>
Thu, 12 Nov 2009 14:56:17 +0000 (15:56 +0100)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Tue, 17 Nov 2009 15:27:12 +0000 (16:27 +0100)
C4/Serials.pm

index daf9a87..7d45ea7 100644 (file)
@@ -1128,7 +1128,7 @@ sub ModSerialStatus {
             $missinglist .= "; $serialseq"
               if ( $status eq 4
                 and not index( "$missinglist", "$serialseq" ) >= 0 );
-            $missinglist .= "; not issued $serialseq"
+            $missinglist .= "; $serialseq"
               if ( $status eq 5
                 and index( "$missinglist", "$serialseq" ) >= 0 );
             $query = "UPDATE subscriptionhistory SET recievedlist=?, missinglist=? WHERE  subscriptionid=?";