[Libreoffice-commits] .: bug/query.pl

Loic Dachary loic at kemper.freedesktop.org
Wed Sep 14 06:25:08 PDT 2011


 bug/query.pl |    5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

New commits:
commit 269660b4fd087d8a14744b4f254d5b25dfce2651
Author: Loic Dachary <loic at dachary.org>
Date:   Wed Sep 14 15:24:58 2011 +0200

    Currently Version unspecified is missing in the picker. But this "version" is required for several bug types what are not inevitably related to LibO versions (WWW, Extensions, Linguistic), so this "Version" unspecified has to be introduced. -- Rainer Bielefeld 2011-09-10T19:35:42 (CEST)

diff --git a/bug/query.pl b/bug/query.pl
index c7ca2e0..25ee7fc 100644
--- a/bug/query.pl
+++ b/bug/query.pl
@@ -18,11 +18,8 @@ if($ARGV[0] eq 'versions') {
     @versions = @{$vers[$libreoffice]};
     print "<select name='version' class='versions'>\n";
     print " <option value=''>(chose a version)</option>\n";
-    print " <option value='?'>(Version unspecified)</option>\n";
     for($count = 0; $count < @versions; $count++) {
-        if($versions[$count] ne 'unspecified') {
-            print " <option value='$versions[$count]'>$versions[$count]</option>\n";
-        }
+        print " <option value='$versions[$count]'>$versions[$count]</option>\n";
     }
     print "</select>\n";
 }


More information about the Libreoffice-commits mailing list