|
From: Javier S. <ja...@us...> - 2001-09-26 09:20:19
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv7923
Modified Files:
include.php
Log Message:
ID -> _id
pb updating/editing bug 's OS
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- include.php 2001/09/22 16:55:33 1.56
+++ include.php 2001/09/26 09:20:16 1.57
@@ -331,7 +331,7 @@
while ($row = $q->grab()) {
if ($value == '' and $row['Regex'] and
preg_match($row['Regex'],$GLOBALS['HTTP_USER_AGENT'])) $sel = ' selected';
- elseif ($value == $row[$box.'ID']) $sel = ' selected';
+ elseif ($value == $row[$box.'_id']) $sel = ' selected';
else $sel = '';
$text .= '<option value="'.
$row[$box.'_id']."\"$sel>".$row[$box.'_name']."</option>";
|