|
From: Jirka P. <fi...@us...> - 2002-06-05 15:25:12
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv15455/phpbt/inc
Modified Files:
functions.php
Log Message:
Added NONE to database list in build_select. Maybe ALL will be better, I don't know.
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- functions.php 21 May 2002 11:20:17 -0000 1.29
+++ functions.php 5 Jun 2002 15:25:08 -0000 1.30
@@ -124,6 +124,7 @@
}
break;
case 'database' :
+ $text = '<option value="0">None</option>';
$rs = $db->query($queries[$box]);
while ($rs->fetchInto($row)) {
if ($selected == $row[$box.'_id'] and $selected != '') $sel = ' selected';
|