In the form the "address" field's title was set as "address" instead of "Address". All the other fields are capitalised so this is inconsistent and looks weird.

Here's a diff of the change I made:

Index: petition.module
===================================================================
--- petition.module (revision 331)
+++ petition.module (working copy)
@@ -1443,7 +1443,7 @@
If (in_array('address', $node->optional_fields, TRUE)) {
$form['signature']['address'] = array(
'#type' => 'textfield',
- '#title' => t('address'),
+ '#title' => t('Address'),
'#maxlength' => 300,
'#required' => $required['address'],
'#weight' => 3

Comments

galooph’s picture

Assigned: Unassigned » galooph
Status: Active » Fixed

This has been fixed in 6.x-2.x-dev.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.