Revision: 2062
          http://mrbs.svn.sourceforge.net/mrbs/?rev=2062&view=rev
Author:   cimorrison
Date:     2011-10-03 10:16:27 +0000 (Mon, 03 Oct 2011)
Log Message:
-----------
Fixed bug with display of zebra stripes in room table in IE7

Modified Paths:
--------------
    mrbs/branches/datatables/web/admin.php

Modified: mrbs/branches/datatables/web/admin.php
===================================================================
--- mrbs/branches/datatables/web/admin.php      2011-10-03 09:59:51 UTC (rev 
2061)
+++ mrbs/branches/datatables/web/admin.php      2011-10-03 10:16:27 UTC (rev 
2062)
@@ -299,13 +299,13 @@
         
         // The body
         echo "<tbody>\n";
-        $row_class = "odd_row";
+        $row_class = "odd";
         foreach ($rooms as $r)
         {
           // Don't show ordinary users disabled rooms
           if ($is_admin || !$r['disabled'])
           {
-            $row_class = ($row_class == "even_row") ? "odd_row" : "even_row";
+            $row_class = ($row_class == "even") ? "odd" : "even";
             echo "<tr class=\"$row_class\">\n";
 
             $html_name = htmlspecialchars($r['room_name']);

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to