--- /usr/share/univention-management-console-frontend/js/umc/modules/setup.js 2012-12-11 19:33:07.332001071 -0500 +++ /usr/share/univention-management-console-frontend/js/umc/modules/setup.js.orig 2012-12-11 19:24:22.684001067 -0500 @@ -138,9 +138,6 @@ // we are in locale mode if the user is __systemsetup__ this.local_mode = tools.status('username') == '__systemsetup__'; - // save current values - this._orgValues = lang.clone(values); - // add the SystemRolePage and HelpPage to the list of pages for the wizard mode if (this.wizard_mode) { // add the SystemRolePage to the list of pages for the wizard mode if the packages have been downloaded @@ -247,7 +244,6 @@ this._pages.push(ipage); // connect to valuesChanged callback of every page - ipage.setValues(values); ipage.on('valuesChanged', lang.hitch(this, 'updateAllValues')); }, this); // Now we know which pages were loaded, adjust HelpPage text @@ -314,7 +310,6 @@ this._pages.push(ipage); // connect to valuesChanged callback of every page - ipage.setValues(values); ipage.on('valuesChanged', lang.hitch(this, 'updateAllValues')); // hide tab if page is not visible @@ -331,6 +326,7 @@ } this.startup(); + this.setValues(values); this.standby(false); },