| 
     
      
      
      From: <ken...@us...> - 2009-02-11 17:17:24
      
     
   | 
Revision: 1230
          http://andro.svn.sourceforge.net/andro/?rev=1230&view=rev
Author:   kendowns
Date:     2009-02-11 17:17:20 +0000 (Wed, 11 Feb 2009)
Log Message:
-----------
Fixed conditional in input generation that was using = instead of ==
Modified Paths:
--------------
    trunk/andro/lib/androLib.php
Modified: trunk/andro/lib/androLib.php
===================================================================
--- trunk/andro/lib/androLib.php	2009-02-09 21:03:09 UTC (rev 1229)
+++ trunk/andro/lib/androLib.php	2009-02-11 17:17:20 UTC (rev 1230)
@@ -2962,7 +2962,7 @@
             $this->colStyles['div.cell_'.$column_id.' input'] 
                 ="width: {$iWidth}px; $cssExtra";
         }
-        else if($type_id = 'mime-f') {
+        else if($type_id == 'mime-f') {
             $iWidth -= x6cssdefine('bodyfs','12px')*.67*20;
             $this->colStyles['div.cell_'.$column_id.' input'] 
                 ="width: {$iWidth}px; $cssExtra";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 |