[pLog-svn] r3457 - plog/trunk/js/ui

oscar at devel.lifetype.net oscar at devel.lifetype.net
Wed May 24 08:25:38 GMT 2006


Author: oscar
Date: 2006-05-24 08:25:33 +0000 (Wed, 24 May 2006)
New Revision: 3457

Modified:
   plog/trunk/js/ui/common.js
Log:
This fix was introduced in revision r3441 but it broke removing multiple users because it always left the last one behind (it removed everything else except the last one)
Jon, since you made the original fix, can you check if this breaks it again?


Modified: plog/trunk/js/ui/common.js
===================================================================
--- plog/trunk/js/ui/common.js	2006-05-24 08:06:21 UTC (rev 3456)
+++ plog/trunk/js/ui/common.js	2006-05-24 08:25:33 UTC (rev 3457)
@@ -435,7 +435,8 @@
 	for( i = 0; i < length; i++ ) {
 		if( userList.options[i].selected ){
 			userList.options[i] = null;
-            i--; length--;
+            i--; 
+            //length--;
         }
 	}
 	return( true );



More information about the pLog-svn mailing list