Upgrading to Drupal 6.2 leaves something to be desired as far as the image module goes.
It's bad enough for the average enthusiast that uploading images is not a core feature... but here's the fix that I found posted at http://drupal.org/node/219808
insert into image select upload.nid as nid , files.fid as fid , filename as image_size from upload, files where upload.fid = files.fid and files.filemime like "image/%";
Comments
Post new comment