Closed (fixed)
Project:
Petition Node
Version:
6.x-1.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
13 Nov 2009 at 13:11 UTC
Updated:
5 Sep 2011 at 16:11 UTC
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
Comment #1
galooph commentedThis has been fixed in 6.x-2.x-dev.