From 56b8f99ba260644a8f34f664e3acb96ee4f284a2 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 26 Feb 2011 15:57:33 -0500 Subject: [PATCH] Fix bad regexp replacement in mow.js. --- common/content/mow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/mow.js b/common/content/mow.js index 50f361cc..64feba3d 100644 --- a/common/content/mow.js +++ b/common/content/mow.js @@ -127,7 +127,7 @@ var MOW = Module("mow", { data.document = this.document; output.appendChild(data.message); - this._("push", data); + this.messages.push(data); } else { let style = isString(data) ? "pre" : "nowrap";