Closed (fixed)
Project:
Node Cloud
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Task
Assigned:
Unassigned
Reporter:
Created:
17 Jun 2008 at 16:44 UTC
Updated:
9 Jul 2008 at 13:02 UTC
Terrific module, thank you!
A minor oversight to correct: in node cloud settings under site configuration, Minimum node size appears over both fields. The second field header should read "Maximum node size."
Corrected code is below, fyi.
function nodecloud_settings() {
$form['nodecloud_min'] = array(
'#type' => 'textfield',
'#title' => t('Minimum font size (in "EM" units)'),
'#default_value' => variable_get('nodecloud_min', NODECLOUD_MIN)
);
$form['nodecloud_max'] = array(
'#type' => 'textfield',
'#title' => t('Maximum font size (in "EM" units)'),
'#default_value' => variable_get('nodecloud_max', NODECLOUD_MAX)
);
return system_settings_form($form);
}
Comments
Comment #1
bwv commentedApologies, those are lines 27 through 39 of the nodecloud.module.
Comment #2
dropcube commentedThis is fixed in the development version. Thanks anyway for reporting.
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.