cvs diff: Diffing .
Index: uc_wishlist.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/uc_wishlist/uc_wishlist.admin.inc,v
retrieving revision 1.1
diff -u -p -r1.1 uc_wishlist.admin.inc
--- uc_wishlist.admin.inc       27 Mar 2009 16:08:33 -0000      1.1
+++ uc_wishlist.admin.inc       19 May 2010 13:38:45 -0000
@@ -24,7 +24,12 @@ function uc_wishlist_admin_settings_form
     '#description' => t('Check this box to allow anonymous users to create wish lists. If not checked, anonymous visitors will be prompted to login or register before creating a wish list.'),
   );

-  // TODO: add uc_wishlist_default_length
+  $form['uc_wishlist_default_length'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Default expiration length'),
+    '#default_value' => variable_get('uc_wishlist_default_length', 2592000),
+    '#description' => t("Value is in seconds (2592000 means 30 days) from wishlist creation."),
+  );

   return system_settings_form($form);
 }
