Commit e82942ac authored by Mike Perry's avatar Mike Perry
Browse files

Bug 1246 - Fix IST timezone issue.

parent 1c6ccb32
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -881,10 +881,10 @@ function torbutton_set_timezone(mode, startup) {
            offStr = "+";
        }
        
        if(offset/60 < 10) {
        if(Math.floor(offset/60) < 10) {
            offStr += "0";
        }
        offStr += (offset/60)+":";
        offStr += Math.floor(offset/60)+":";
        if((offset%60) < 10) {
            offStr += "0";
        }