diff --git a/uc_userpoints_product.module b/uc_userpoints_product.module
index 5442326..bb14db4 100644
--- a/uc_userpoints_product.module
+++ b/uc_userpoints_product.module
@@ -52,7 +52,7 @@ function uc_userpoints_product_product_feature() {
 		'title' => t(variable_get(USERPOINTS_TRANS_UCPOINTS, 'Userpoints')),
 		'callback' => 'uc_userpoints_product_feature_form',
 		'delete' => 'uc_userpoints_product_feature_delete',
-		'settings' => array('uc_userpoints_product_feature_settings'),
+		'settings' => 'uc_userpoints_product_feature_settings',
 	);
 	return $features;
 }
@@ -144,6 +144,10 @@ function uc_userpoints_product_feature_form_submit($form, &$form_state) {
  */
 function uc_userpoints_product_feature_settings() {
 	// Nothing yet.
+	return array('info' => array( 
+	  '#type' => 'markup',
+	  '#value' => t('No information to show up.')
+	));
 }
 
 
