diff --git a/xpfe/global/resources/content/wizardManager.js b/xpfe/global/resources/content/wizardManager.js index 3ee135a05758..d812614b893a 100644 --- a/xpfe/global/resources/content/wizardManager.js +++ b/xpfe/global/resources/content/wizardManager.js @@ -159,13 +159,13 @@ function WM_ProgressUpdate( currentPageNumber ) if ( statusbar ) { var string; try { + dump("mapLength = " + this.GetMapLength() + "\n"); string = this.bundle.formatStringFromName("oflabel", - [currentPageNumber, - this.GetMapLength], 2); + [currentPageNumber+1, + this.GetMapLength()], 2); } catch (e) { string = ""; } - string += this.GetMapLength(); statusbar.setAttribute( "progress", string ); } }