From cecf83a48d3bde732f5cffacd0499f67ff23254c Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Wed, 29 Sep 2010 06:32:07 -0400
Subject: [PATCH] Correct JS syntax

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

diff --git a/program/js/list.js b/program/js/list.js
index 22c8080..2b49612 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -862,7 +862,7 @@
 
   // one row
   if (id) {
-    for (var n=0 in this.selection)
+    for (var n in this.selection)
       if (this.selection[n] == id) {
         this.selection.splice(n,1);
         break;

--
Gitblit v1.9.1