i suspect it's when the feeds are missing titles, and then the item gets assigned the value 'NULL_EMPTY'. i had to add "&& $item != 'NULL_EMPTY'" on the if-statement in this block of code in simpleblogroll.module:

function _simpleblogroll_modify_db($op, $feedurl = '') {
      ...
      case 'update':
        if ($item != '' && $item != 'NULL_EMPTY') {
          $query_check_for_item = db_query('SELECT feed_title, last_item '
              .'FROM {simpleblogroll} '
              ."WHERE last_item = '%s'",
              $item
              );
      }
      ...
}

Comments

filiptc’s picture

Status: Needs review » Patch (to be ported)

Yes, it seems to fix the problem. Porting ASAP.

filiptc’s picture

Status: Patch (to be ported) » Fixed

Committed. Should be 1.5 once D.o has completed the cron cycle.

Status: Fixed » Closed (fixed)

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