I just noticed when I go to the admin/quotes page, in the Overview section at the bottom there is a submit button that is blank.
This just needs to be changed in the quotes.module file so that it goes from looking like this (lns 861-863):
$form['submit'] = array(
'#type' => 'submit'
);
To this:
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Submit')
);
Thanks for a wonderful module...saved a ton of time on our site!
~Joshua
Comments
Comment #1
jhriggs commentedI just committed version 4.7r3 that fixes this, though differently than you suggest. I changed admin/settings/quotes to use hook_settings() instead of a custom callback.
Comment #2
sokrplare commentedSweet! Works perfectly. Thanks for such a quick fix. I like the optional titles too and the move to having quotes under settings.
Comment #3
(not verified) commented