diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-21 09:11:31 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-09-21 09:11:31 -0700 |
commit | c01e467466eff51926108d030f21385179fa24d2 (patch) | |
tree | f7f298c0a024ca8d657aa1218da9e54141976063 | |
parent | 76a9e5b40fe7c0a40032ebb22471b1c3d0586099 (diff) |
If captured had been used for any sort orders, reset back to weight
-rw-r--r-- | modules/gallery/helpers/gallery_installer.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/gallery/helpers/gallery_installer.php b/modules/gallery/helpers/gallery_installer.php index aebb7a32..645d6865 100644 --- a/modules/gallery/helpers/gallery_installer.php +++ b/modules/gallery/helpers/gallery_installer.php @@ -367,6 +367,8 @@ class gallery_installer { if ($version == 12) { // remove the capture field if exif is not installed and it has no data if (!module::is_active("exif")) { + $db->query("update g3_items set sort_order = 'weight' + where type = 'album' and sort_order = 'captured';"); $total_records = $db->query("SELECT COUNT(id) as total_records FROM {items}") ->current()->total_records; $count_null = $db->query("SELECT COUNT(id) as count_null FROM {items} where `captured`is NULL") |