From c1e9b0306166c80da4d3cddb170dece838780d5a Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Tue, 07 Jul 2009 13:23:55 -0400
Subject: [PATCH] - fix debug console

---
 program/js/common.js |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/program/js/common.js b/program/js/common.js
index 1fd10c2..627d238 100644
--- a/program/js/common.js
+++ b/program/js/common.js
@@ -580,7 +580,7 @@
 {
   this.log = function(msg)
   {
-    var box = rcube_find_object('console');
+    var box = rcube_find_object('dbgconsole');
 
     if (box) {
       if (msg.charAt(msg.length-1)=='\n')
@@ -599,7 +599,7 @@
 
   this.reset = function()
   {
-    var box = rcube_find_object('console');
+    var box = rcube_find_object('dbgconsole');
     if (box)
       box.innerText = box.value = '';
   };

--
Gitblit v1.9.1