Closed (fixed)
Project:
Excerpt
Version:
6.x-1.1
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
20 Oct 2009 at 21:10 UTC
Updated:
20 Jul 2010 at 13:40 UTC
I was getting a bunch of mysterious database errors -- telling me that the format column was a primary key (!)
Upon closer inspection I saw line 57 of excerpt.module:
drupal_write_record('excerpt', $excerpt, $primary_keys);
But $primary_keys is never defined anywhere. I believe that line should read:
drupal_write_record('excerpt', $excerpt, 'vid');
Comments
Comment #1
crookednumber commentedComment #2
andyf commentedAs it was such a small thing I rolled into my patch on #608340: option to specify size of teaser.
Comment #3
hanoiiCommitted