Closed (fixed)
Project:
Leech
Version:
5.x-1.8
Component:
leech
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
27 Jul 2007 at 00:44 UTC
Updated:
30 Jul 2007 at 17:11 UTC
I've figured out why my leech feeds were not respecting the default 'Delete news items older than:' from my CCK content-type edit page.
in leech.module line 2496 is this:
$edit->leech_news->items_delete = variable_get('leech_news_items_delete_#'.$edit->type, 15724799);
and I think it should be without the '#'
$edit->leech_news->items_delete = variable_get('leech_news_items_delete_'.$edit->type, 15724799);
otherwise the items_delete value will always be 15724799.
Comments
Comment #1
alex_b commentedFixed and rolled 1.9 release. Thank you.
http://drupal.org/node/163159
http://cvs.drupal.org/viewvc.py/drupal/contributions/modules/leech/leech...
Comment #2
alex_b commented