diff --git a/controllers/admin/AdminCarrierWizardController.php b/controllers/admin/AdminCarrierWizardController.php index 0b8eeea69..2c85f8c40 100644 --- a/controllers/admin/AdminCarrierWizardController.php +++ b/controllers/admin/AdminCarrierWizardController.php @@ -81,7 +81,6 @@ class AdminCarrierWizardControllerCore extends AdminController $multistore_step = array( array( 'title' => $this->l('MultiStore'), - 'desc' => $this->l('MultiStore'), ) ); array_splice($this->wizard_steps['steps'], 1, 0, $multistore_step); diff --git a/js/admin_carrier_wizard.js b/js/admin_carrier_wizard.js index f77c353ec..c43431d6a 100644 --- a/js/admin_carrier_wizard.js +++ b/js/admin_carrier_wizard.js @@ -587,4 +587,12 @@ function getCorrectRangePosistion(current_inf, current_sup) new_position = index; }); return new_position; +} + +function checkAllZones(elt) +{ + if($(elt).is(':checked')) + $('.input_zone').attr('checked', 'checked'); + else + $('.input_zone').removeAttr('checked'); } \ No newline at end of file