bug/bug/bug.js |   13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

New commits:
commit 292c96ac19a9a930225ae47b9ece6269c10bb63a
Author: Rob Snelders <programm...@ertai.nl>
Date:   Sun Nov 25 12:24:11 2012 +0100

    fixing bug with token and versions

diff --git a/bug/bug/bug.js b/bug/bug/bug.js
index 131f396..21df0c8 100644
--- a/bug/bug/bug.js
+++ b/bug/bug/bug.js
@@ -176,7 +176,7 @@
             $(".select", element).select();
             $(".state_details .versions .choice[data='NONE']").remove();
             $(".versions .select .choice", element).click(function() {
-                $.bug.version = $('.state_details .version 
.chosen').attr('data');
+                $.bug.version = $('.state_details .versions 
.chosen').attr('data');
                 if ($.bug.subcomponent != 'EMPTY' && $.bug.op_sys != '' && 
$.bug.regression != '') {
                     $.bug.state_description();
                 }
@@ -253,12 +253,6 @@
             var element = $('.state_submit');
             if(!element.hasClass('initialized')) {
 
-                if ($.bug.token == '') {
-                    $.bug.ajax('GET', $.bug.url + 
'/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED').pipe(function(data){
-                        $.bug.token = data.match(/<input type="hidden" 
name="token" value="([A-Za-z0-9]{10})">/)[1];
-                    });
-                }
-
                 var form = $('.submission_form form');
                 $.bug.error_clear();
                 form.attr('action', $.bug.url + '/post_bug.cgi');
@@ -268,6 +262,11 @@
                     } else {
                         $(element).addClass('inprogress');
                     }
+                    if ($.bug.token == '') {
+                        $.bug.ajax('GET', $.bug.url + 
'/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED').pipe(function(data){
+                            $.bug.token = data.match(/<input type="hidden" 
name="token" value="([A-Za-z0-9]{10})">/)[1];
+                        });
+                    }
                     var component = $('.state_component 
.chosen').attr('data').replace('_',' ');
                     var short_desc = $.bug.subcomponent + ': ' + 
$('.state_description .short').val();
                     //Add Operating System
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to