Index: trunk/core/kernel/application.php =================================================================== diff -u -r2600 -r2604 --- trunk/core/kernel/application.php (.../application.php) (revision 2600) +++ trunk/core/kernel/application.php (.../application.php) (revision 2604) @@ -290,7 +290,7 @@ $this->registerClass('kCurrencyRates',MODULES_PATH.'/in-commerce/units/currencies/currency_rates.php'); } - $this->registerClass('FCKeditor', DOC_ROOT.BASE_PATH.'/admin/editor/cmseditor/fckeditor.php'); // need this? + $this->registerClass('FCKeditor', FULL_PATH.'/admin/editor/cmseditor/fckeditor.php'); // need this? } /** @@ -318,7 +318,7 @@ $unit_config_reader =& $this->recallObject('kUnitConfigReader'); foreach($unit_config_reader->modules_installed as $module_path) { - $contants_file = DOC_ROOT.BASE_PATH.$module_path.'constants.php'; + $contants_file = FULL_PATH.$module_path.'constants.php'; if( file_exists($contants_file) ) k4_include_once($contants_file); } } @@ -1168,7 +1168,7 @@ { if( defined('SILENT_LOG') && SILENT_LOG ) { - $fp = fopen(DOC_ROOT.BASE_PATH.'/silent_log.txt','a'); + $fp = fopen(FULL_PATH.'/silent_log.txt','a'); $time = date('d/m/Y H:i:s'); fwrite($fp, '['.$time.'] #'.$errno.': '.strip_tags($errstr).' in ['.$errfile.'] on line '.$errline."\n"); fclose($fp);