From 6601bcbb690b2303b6707eb0aabbcaad64a6ccea Mon Sep 17 00:00:00 2001 From: Eric Heien Date: Fri, 28 Mar 2003 22:04:51 +0000 Subject: [PATCH] bug fix svn path=/trunk/boinc/; revision=1114 --- html/ops/util.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/ops/util.inc b/html/ops/util.inc index 378614e766..80a21e33bb 100644 --- a/html/ops/util.inc +++ b/html/ops/util.inc @@ -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;