Changeset 2005

Show
Ignore:
Timestamp:
02/07/08 23:38:04
Author:
typester
Message:

Don't set null against not null columns

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/fastladder-crawler/plagger/lib/Plagger/Plugin/Store/Fastladder.pm

    r2004 r2005  
    3939    $feed->set_columns({ 
    4040        link        => $args->{feed}->link, 
    41         title       => $args->{feed}->title
    42         description => $args->{feed}->description
     41        title       => $args->{feed}->title || ''
     42        description => $args->{feed}->description || ''
    4343        updated_on  => $args->{feed}->updated || $now, 
    4444    }); 
     
    6464 
    6565        $item->set_columns({ 
    66             title          => $entry->title
     66            title          => $entry->title || ''
    6767            body           => $entry->body, 
    6868            author         => $entry->author,