diff --git a/html/user/util.inc b/html/user/util.inc
index 25db5a1dd7..822e76b33f 100644
--- a/html/user/util.inc
+++ b/html/user/util.inc
@@ -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;