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

Loic Dachary loic at kemper.freedesktop.org
Wed Sep 14 06:18:20 PDT 2011


 bug/query.pl |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit da2a5da6957f2bc1e1b30d3973359ce71dbc3d1f
Author: Loic Dachary <loic at dachary.org>
Date:   Wed Sep 14 15:18:06 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 590d7b9..c7ca2e0 100644
--- a/bug/query.pl
+++ b/bug/query.pl
@@ -17,7 +17,8 @@ print "<?xml version='1.0' encoding='ISO-8859-1'?>\n";
 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=''>(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";


More information about the Libreoffice-commits mailing list