From 591162689f563eb99bd1aac5636c85eb9f3021fb Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Mon, 13 Dec 2010 22:15:20 -0700 Subject: [PATCH] Bug #9444: Existence check --- horde/js/dragdrop2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde/js/dragdrop2.js b/horde/js/dragdrop2.js index 57ec1ac9c..3fbad8c57 100644 --- a/horde/js/dragdrop2.js +++ b/horde/js/dragdrop2.js @@ -496,7 +496,7 @@ Drag = Class.create({ } if (elt) { - if (elt == this.ghost.elt) { + if (this.ghost && (elt == this.ghost.elt)) { return; } -- 2.11.0