diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2013-07-17 23:07:31 +0000 | 
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2013-07-17 23:07:31 +0000 | 
| commit | 25c5218b5ee7361943979b386cc681cf158f707e (patch) | |
| tree | 42da65dfeb85944f049a32c61824361828efafdf /modules/gallery/models | |
| parent | 9ef4eff6aea4ec1135f7b12ff8f22dc296cc91ba (diff) | |
| parent | ffecd3feffdb0d49e14c75d90e2765dcb3bddc02 (diff) | |
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/gallery/models')
| -rw-r--r-- | modules/gallery/models/item.php | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/modules/gallery/models/item.php b/modules/gallery/models/item.php index 1d4f35da..2dbd99bb 100644 --- a/modules/gallery/models/item.php +++ b/modules/gallery/models/item.php @@ -498,11 +498,6 @@ class Item_Model_Core extends ORM_MPTT {              @rename($original->resize_path(), $this->resize_path());              @rename($original->thumb_path(), $this->thumb_path());            } - -          if ($original->parent_id != $this->parent_id) { -            // This will result in 2 events since we'll still fire the item_updated event below -            module::event("item_moved", $this, $original->parent()); -          }          }          // Changing the name, slug or parent ripples downwards @@ -526,6 +521,11 @@ class Item_Model_Core extends ORM_MPTT {            $this->resize_dirty = 1;          } +        if ($original->parent_id != $this->parent_id) { +          // This will result in 2 events since we'll still fire the item_updated event below +          module::event("item_moved", $this, $original->parent()); +        } +          module::event("item_updated", $original, $this);          if ($this->data_file) { | 
