for a temp measure this could be done via an sql query...
UPDATE items SET captured = created WHERE captured IS NULL
however, I agree with your request. Editing the class for Item_Module_Core in gallery/modules/gallery/models/item.php near the $this->blah's lines and adding $this->captured = time(); would suffice I think, as I think the captured date is set via the exif module after image created. (This is just quick thinking though
-OR- perhaps editing the exif module to copy over the created date if no captured date is set... (assuming you're using the exif module)
Posts: 814
for a temp measure this could be done via an sql query...
UPDATE items SET captured = created WHERE captured IS NULL
however, I agree with your request. Editing the class for Item_Module_Core in gallery/modules/gallery/models/item.php near the $this->blah's lines and adding $this->captured = time(); would suffice I think, as I think the captured date is set via the exif module after image created. (This is just quick thinking though
-OR- perhaps editing the exif module to copy over the created date if no captured date is set... (assuming you're using the exif module)