// When "enter" is pushed on the new installer form, trigger "next" button instead of "back" button

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12211 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-01-05 16:38:40 +00:00
parent 8f31d01440
commit ee08f88948
+4 -3
View File
@@ -2,9 +2,6 @@
</div><!-- div id="sheets" -->
<div id="buttons">
<?php if (!$this->isFirstStep()): ?>
<input id="btBack" class="button little" type="submit" name="submitPrevious" value="<?php echo $this->l('Back') ?>" />
<?php endif; ?>
<?php if (!$this->isLastStep()): ?>
<?php if ($this->next_button): ?>
<input id="btNext" class="button little" type="submit" name="submitNext" value="<?php echo $this->l('Next') ?>" />
@@ -12,6 +9,10 @@
<input id="btNext" class="button little disabled" type="submit" name="submitNext" value="<?php echo $this->l('Next') ?>" disabled="disabled" />
<?php endif; ?>
<?php endif; ?>
<?php if (!$this->isFirstStep()): ?>
<input id="btBack" class="button little" type="submit" name="submitPrevious" value="<?php echo $this->l('Back') ?>" />
<?php endif; ?>
</div>
</form>