Author: greg.ercolano
Date: 2012-02-25 09:37:26 -0800 (Sat, 25 Feb 2012)
New Revision: 659
Log:
Fixed bug in html_empty_row() logic.



Modified:
   trunk/phplib/html.php

Modified: trunk/phplib/html.php
===================================================================
--- trunk/phplib/html.php       2012-02-24 18:03:04 UTC (rev 658)
+++ trunk/phplib/html.php       2012-02-25 17:37:26 UTC (rev 659)
@@ -626,7 +626,7 @@
 function
 html_empty_row($classname = "")                // I - HTML class to use
 {
-  if ( $classname != "" )
+  if ( $classname == "" )
     { print "  <tr><td>&nbsp;</td></tr>\n"; }
   else
     { print "  <tr class='$classname'><td>&nbsp;</td></tr>\n"; }

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to