*** empty log message ***

svn path=/trunk/boinc/; revision=1683
This commit is contained in:
Karl Chen 2003-07-15 21:21:46 +00:00
parent dfa1dbbab3
commit c57dec5264
1 changed files with 2 additions and 2 deletions

View File

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