Index: branches/2.8.x/CHANGELOG
===================================================================
--- branches/2.8.x/CHANGELOG	(revision 1657)
+++ branches/2.8.x/CHANGELOG	(revision 1658)
@@ -11,6 +11,8 @@
 ! = Update/Change
 ===============================================================================
 
+05 Apr-2012 Build 1658 Werner v.d.Decken(DarkViper)
+# fixed alternating row styles in droplet listing
 04 Apr-2012 Build 1657 Dietmar Woellbrink (Luisehahne)
 ! some validation fixes in backend
 02 Apr-2012 Build 1656 Werner v.d.Decken(DarkViper)
Index: branches/2.8.x/wb/admin/interface/version.php
===================================================================
--- branches/2.8.x/wb/admin/interface/version.php	(revision 1657)
+++ branches/2.8.x/wb/admin/interface/version.php	(revision 1658)
@@ -51,5 +51,5 @@
 
 // check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
 if(!defined('VERSION')) define('VERSION', '2.8.3');
-if(!defined('REVISION')) define('REVISION', '1657');
+if(!defined('REVISION')) define('REVISION', '1658');
 if(!defined('SP')) define('SP', '');
Index: branches/2.8.x/wb/modules/droplets/tool.php
===================================================================
--- branches/2.8.x/wb/modules/droplets/tool.php	(revision 1657)
+++ branches/2.8.x/wb/modules/droplets/tool.php	(revision 1658)
@@ -91,7 +91,7 @@
 $num_droplets = $query_droplets->numRows();
 if($num_droplets > 0) {
 	?>
-	<table summary="" class="row_a" border="0" cellspacing="0" cellpadding="3" width="100%">
+	<table summary="" class="row_0" border="0" cellspacing="0" cellpadding="3" width="100%">
 	<thead>
 		<tr>
 			<td width="3%"></td>
@@ -102,7 +102,7 @@
 		</tr>
 	</thead>
 	<?php
-	$row = 'a';
+	$row = 0;
 	while($droplet = $query_droplets->fetchRow()) {
 		$get_modified_user = $database->query("SELECT display_name,username, user_id FROM ".TABLE_PREFIX."users WHERE user_id = '".$droplet['modified_by']."' LIMIT 1");
 		if($get_modified_user->numRows() > 0) {
@@ -150,12 +150,8 @@
 			</td>
 		</tr>
 		<?php
-		// Alternate row color
-		if($row == 'a') {
-			$row = 'b';
-		} else {
-			$row = 'a';
-		}
+		// Alternate row color (toggle between 0 and 1)
+		$row = ++$row & 1;
 	}
 	?>
 	</table>
