diff options
author | xue <> | 2007-03-02 21:05:38 +0000 |
---|---|---|
committer | xue <> | 2007-03-02 21:05:38 +0000 |
commit | 13495b462f6a618530f0f6af71fb6fad6bafed91 (patch) | |
tree | ebe213dc568f858d16c48403948227c7e0932592 /framework/Web/Services/TPageService.php | |
parent | 56df1d34bd381e864f613cc3b72fb886dc548008 (diff) |
Improved error display.
Diffstat (limited to 'framework/Web/Services/TPageService.php')
-rw-r--r-- | framework/Web/Services/TPageService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/Services/TPageService.php b/framework/Web/Services/TPageService.php index a0c4b8fb..7d434523 100644 --- a/framework/Web/Services/TPageService.php +++ b/framework/Web/Services/TPageService.php @@ -397,7 +397,7 @@ class TPageService extends TService */
protected function createPage($pagePath)
{
- $path=$this->getBasePath().'/'.strtr($pagePath,'.','/');
+ $path=$this->getBasePath().DIRECTORY_SEPARATOR.strtr($pagePath,'.','/');
$hasTemplateFile=is_file($path.self::PAGE_FILE_EXT);
$hasClassFile=is_file($path.Prado::CLASS_FILE_EXT);
|