summaryrefslogtreecommitdiff
path: root/modules/gallery/libraries/ORM_MPTT.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-08-30 15:04:39 -0700
committerBharat Mediratta <bharat@menalto.com>2009-08-30 15:04:39 -0700
commitdee0abfab9c613855c9145bd189776cc23d92973 (patch)
treeb003af08b460caacbc52e5159178b54da0fd38e0 /modules/gallery/libraries/ORM_MPTT.php
parent53390ba79a78eab54d2c4fe8f00b79f3b3fc5648 (diff)
Use is_descendant() API inside move_to() for clarity.
Diffstat (limited to 'modules/gallery/libraries/ORM_MPTT.php')
-rw-r--r--modules/gallery/libraries/ORM_MPTT.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/gallery/libraries/ORM_MPTT.php b/modules/gallery/libraries/ORM_MPTT.php
index a7defba9..9b3e1f2b 100644
--- a/modules/gallery/libraries/ORM_MPTT.php
+++ b/modules/gallery/libraries/ORM_MPTT.php
@@ -212,8 +212,7 @@ class ORM_MPTT_Core extends ORM {
* @return ORM_MTPP
*/
function move_to($target) {
- if ($this->left_ptr <= $target->left_ptr &&
- $this->right_ptr >= $target->right_ptr) {
+ if ($this->is_descendant($target)) {
throw new Exception("@todo INVALID_TARGET can't move item inside itself");
}