svn path=/trunk/boinc/; revision=1114
This commit is contained in:
Eric Heien 2003-03-28 22:04:51 +00:00
parent 08d6b25aa4
commit 6601bcbb69
1 changed files with 2 additions and 2 deletions

View File

@ -165,11 +165,11 @@ function parse_element($xml, $tag) {
return $element;
}
// look for a particular element in the config.xml file
// look for a particular element in the .htconfig.xml file
//
function parse_config($tag) {
$element = null;
$fp = fopen("config.xml", "r");
$fp = fopen(".htconfig.xml", "r");
while (1) {
$buf = fgets($fp, 1024);
if ($buf == null) break;