Update of /cvsroot/basedb/basedb/www
In directory usw-pr-cvs1:/tmp/cvs-serv3384
Modified Files:
program_edit.phtml
Log Message:
Fixed import. 'type' had been changed to 'valueType' where it shouldn't.
Index: program_edit.phtml
===================================================================
RCS file: /cvsroot/basedb/basedb/www/program_edit.phtml,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** program_edit.phtml 29 Aug 2002 16:51:34 -0000 1.20
--- program_edit.phtml 31 Aug 2002 11:44:03 -0000 1.21
***************
*** 514,518 ****
$cN = isset($cols["name"]) ? $cols["name"] : -1;
$cCN = isset($cols["commonName"]) ? $cols["commonName"] : -1;
! $cT = isset($cols["valueType"]) ? $cols["valueType"] : -1;
$cO = isset($cols["options"]) ? $cols["options"] : -1;
$cDV = isset($cols["defaultValue"]) ? $cols["defaultValue"] : -1;
--- 514,518 ----
$cN = isset($cols["name"]) ? $cols["name"] : -1;
$cCN = isset($cols["commonName"]) ? $cols["commonName"] : -1;
! $cT = isset($cols["type"]) ? $cols["type"] : -1;
$cO = isset($cols["options"]) ? $cols["options"] : -1;
$cDV = isset($cols["defaultValue"]) ? $cols["defaultValue"] : -1;
|