Module require his settings form submitting to show buttons. It's not correct behaviour.
Buttons shouldn't be shown if user removed button's label only.
To fix it - replace:
if(variable_get('multistep_button_prev', '')) {
with:
if(variable_get('multistep_button_prev', '< Previous')) {
and replace:
if (variable_get('multistep_button_save', '')) {
with:
if (variable_get('multistep_button_save', 'Save')) {
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | multistep_against_6.x-dev_19.04.2010_#799158.patch | 823 bytes | vladsavitsky |
Comments
Comment #1
vladsavitsky commentedThis is a patch against a 6.x-1.4-dev
Comment #2
vladsavitsky commentedChanged subject
Comment #3
vkareh commentedGood catch with those! Thanks!
I committed the changes into the new development snapshot.