diff Lib/IMPL/Config.pm @ 205:891c04080658

IMPL::Web::View fixed template selection, release candidate
author sergey
date Thu, 03 May 2012 01:00:02 +0400
parents d63f9a92d6d4
children 0f59b2de72af
line wrap: on
line diff
--- a/Lib/IMPL/Config.pm	Wed May 02 17:42:47 2012 +0400
+++ b/Lib/IMPL/Config.pm	Thu May 03 01:00:02 2012 +0400
@@ -122,11 +122,13 @@
 }
 
 sub AppBase {
-	$AppBase
+	shift;
+	File::Spec->catdir($AppBase,@_);
 }
 
 sub ConfigBase {
-	$ConfigBase
+	shift;
+	File::Spec->catdir($ConfigBase,@_);
 }
 
 1;