summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/js/common.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/common.js b/program/js/common.js
index 1fd10c255..627d238d3 100644
--- a/program/js/common.js
+++ b/program/js/common.js
@@ -580,7 +580,7 @@ function rcube_console()
{
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 @@ function rcube_console()
this.reset = function()
{
- var box = rcube_find_object('console');
+ var box = rcube_find_object('dbgconsole');
if (box)
box.innerText = box.value = '';
};