From 4f882ecb4433c443961679553ae72a7b17fa657e Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 3 Apr 2008 12:42:03 -0400 Subject: [PATCH] Make makepo.sh.php work with ISSO 3.0 * docs/makepo.sh.php --- docs/makepo.sh.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/makepo.sh.php b/docs/makepo.sh.php index 8e29d13..30fe8e7 100755 --- a/docs/makepo.sh.php +++ b/docs/makepo.sh.php @@ -20,26 +20,26 @@ || ################################################################### \*=====================================================================*/ -require_once('/Server/htdocs/ISSO/Functions.php'); +require_once('/usr/local/apache2/htdocs/ISSO/Functions.php'); // ################################################################### // generate the list of files to process -$filelist = BSFunctions::ScanDirectory('.'); +$filelist = BSFunctions::scan_directory('.'); foreach ($filelist as $file) { - $ext = BSFunctions::FetchExtension($file); + $ext = BSFunctions::fetch_extension($file); if ($ext == 'php') { - $files[dirname($file)] = BSFunctions::FetchSourcePath(dirname($file)) . '*.php'; + $files[dirname($file)] = BSFunctions::fetch_source_path(dirname($file)) . '*.php'; } else if ($ext == 'xml' || $ext == 'tpl' || $ext == 'html' || $ext == 'htm') { - $files[dirname($file)] = BSFunctions::FetchSourcePath(dirname($file)) . '*.php'; + $files[dirname($file)] = BSFunctions::fetch_source_path(dirname($file)) . '*.php'; $templates[] = array( - 'orig' => BSFunctions::FetchSourcePath('./' . $dirpath) . $file, - 'temp' => BSFunctions::FetchSourcePath('./' . $dirpath) . $file . '.xgt.php' + 'orig' => BSFunctions::fetch_source_path('./' . $dirpath) . $file, + 'temp' => BSFunctions::fetch_source_path('./' . $dirpath) . $file . '.xgt.php' ); } } -- 2.22.5