The description field which is entered on the element admin page is not shown on the finder form. This simple patch appears to fix the problem.

--- /tmp/finder.form.inc        2009-11-30 15:48:06.000000000 -0500
+++ includes/finder.form.inc    2009-11-30 15:44:36.000000000 -0500
@@ -56,7 +56,7 @@
     $form['finder_form'][$element->finder_element_id] = array(
       '#title' => $element->title,
       '#weight' => $element->weight,
-      '#description' => $element->description,
+      '#description' => $element->settings['form']['description'],
       '#prefix' => check_markup($element->settings['form']['prefix'], $element->settings['form']['prefix_format'], FALSE),
       '#suffix' => check_markup($element->settings['form']['suffix'], $element->settings['form']['prefix_format'], FALSE),
       '#default_value' => $element_default,

Comments

danielb’s picture

Status: Needs review » Reviewed & tested by the community

I will change it as you said.

danielb’s picture

Status: Reviewed & tested by the community » Fixed
tedfordgif’s picture

Thanks!

Status: Fixed » Closed (fixed)

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