There's a typo at line 150, preventing the description to be shown: #descripton should be #description.

CommentFileSizeAuthor
#2 decisions_description.patch896 bytesChrisKennedy

Comments

anders.fajerson’s picture

Sorry, line 140 (I should really learn that diff stuff...).

ChrisKennedy’s picture

Status: Active » Fixed
StatusFileSize
new896 bytes

Bah typos :P

diff -u -F^f -r1.72 decisions.module
--- decisions.module	21 Sep 2006 19:36:42 -0000	1.72
+++ decisions.module	3 Oct 2006 07:38:53 -0000
@@ -137,7 +137,7 @@ function decisions_form($node) {
 			'#type' => 'radios',
 			'#title' => t('Set the eligible voters upon creation'),
 			'#options' => $enabled,
-			'#descripton' => t('If enabled, a list of eligible voters will be created and only that group will be able to vote in the decision.'),
+			'#description' => t('If enabled, a list of eligible voters will be created and only that group will be able to vote in the decision.'),
 			'#default_value' => variable_get('decisions_default_electoral_list', DECISIONS_DEFAULT_ELECTORAL_LIST),
 		);
 
Anonymous’s picture

Status: Fixed » Closed (fixed)