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

jhriggs’s picture

Component: User interface » Code
Assigned: Unassigned » jhriggs
Status: Active » Fixed

I 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.

sokrplare’s picture

Sweet! Works perfectly. Thanks for such a quick fix. I like the optional titles too and the move to having quotes under settings.

Anonymous’s picture

Status: Fixed » Closed (fixed)