|
From: Benjamin C. <bc...@us...> - 2002-01-26 16:46:56
|
Update of /cvsroot/phpbt/phpbt/inc
In directory usw-pr-cvs1:/tmp/cvs-serv16449/inc
Modified Files:
functions.php
Log Message:
Changes for INSTALL_PATH
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- functions.php 2002/01/23 14:22:06 1.1
+++ functions.php 2002/01/26 16:46:52 1.2
@@ -142,7 +142,7 @@
$text .= '</option>';
break;
case 'LANGUAGE' :
- $dir = opendir(INSTALL_PATH.'/'.INCLUDE_PATH.'languages');
+ $dir = opendir(INSTALL_PATH.'/languages');
while (false !== ($file = readdir($dir))) {
if ($file != '.' && $file != '..' && $file != 'CVS') {
$file = str_replace('.php', '', $file);
@@ -156,7 +156,7 @@
}
break;
case 'THEME' :
- $dir = opendir(INSTALL_PATH.'/'.INCLUDE_PATH.'templates');
+ $dir = opendir(INSTALL_PATH.'/templates');
while (false !== ($file = readdir($dir))) {
if ($file != '.' && $file != '..' && $file != 'CVS') {
$file = str_replace('.php', '', $file);
|