Bug #8387: Add missing assignment
authorMichael M Slusarz <slusarz@curecanti.org>
Mon, 29 Jun 2009 05:54:35 +0000 (23:54 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Mon, 29 Jun 2009 05:54:35 +0000 (23:54 -0600)
imp/js/src/DimpBase.js

index bcdd47d..2573b23 100644 (file)
@@ -1633,7 +1633,7 @@ var DimpBase = {
             case 'applicationfolders':
                 tmp = e.element();
                 if (!tmp.hasClassName('custom')) {
-                    tmp.up('LI.custom');
+                    tmp = tmp.up('LI.custom');
                 }
                 if (tmp) {
                     this.go('app:' + tmp.down('A').identify().substring(3));