Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Porter <slug@qwebirc.org>2011-02-19 04:32:32 (GMT)
committer Chris Porter <slug@qwebirc.org>2011-02-19 04:32:32 (GMT)
commit72e219f8082d2ea824946d89e331b11a0c31d7f1 (patch)
treecaa992e7304e11205896809ea981e03a90a0e3f3
parent683650ccc08c1eda539f92a8eefc20dc26620e88 (diff)
Reduce maxlength to prevent (some more) disconnections.
-rw-r--r--js/ui/frontends/qui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ui/frontends/qui.js b/js/ui/frontends/qui.js
index cfe4b71..d6ae4d5 100644
--- a/js/ui/frontends/qui.js
+++ b/js/ui/frontends/qui.js
@@ -148,7 +148,7 @@ qwebirc.ui.QUI = new Class({
var inputbox = new Element("input");
form.appendChild(inputbox);
this.inputbox = inputbox;
- this.inputbox.maxLength = 512;
+ this.inputbox.maxLength = 470;
var sendInput = function() {
if(inputbox.value == "")