Update of /cvsroot/phpvortex/phpvortex
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3862
Modified Files:
FT_Base.class.php
Log Message:
Small changes to form output
Index: FT_Base.class.php
===================================================================
RCS file: /cvsroot/phpvortex/phpvortex/FT_Base.class.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** FT_Base.class.php 4 Oct 2004 18:08:24 -0000 1.8
--- FT_Base.class.php 4 Oct 2004 21:13:08 -0000 1.9
***************
*** 108,114 ****
}
if ($form) {
! echo '<tr><td>'.$this->label.'</td><td>';
$this->ShowForm($value);
! echo '</td></tr>';
} else {
echo $this->label.': ';
--- 108,114 ----
}
if ($form) {
! echo "<tr class='ft_{$this->name}'><th>".$this->label.'</th><td>';
$this->ShowForm($value);
! echo "</td></tr>\n";
} else {
echo $this->label.': ';
|