- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/base/include/reports_addedit_include.php
r204 r205 50 50 51 51 echo "<option value=\"0\" "; 52 if ($selectedid=="0") echo "selected ";52 if ($selectedid=="0") echo "selected=\"selected\""; 53 53 echo " style=\"font-weight:bold\">global</option>\n"; 54 54 55 55 while($therecord=mysql_fetch_array($thequery)){ 56 56 echo " <option value=\"".$therecord["id"]."\""; 57 if($selectedid==$therecord["id"]) echo " selected ";57 if($selectedid==$therecord["id"]) echo " selected=\"selected\""; 58 58 echo ">".$therecord["displayname"]."</option>\n"; 59 59 }