Changeset 2469

Show
Ignore:
Timestamp:
06/27/2008 02:52:37 AM (4 months ago)
Author:
tof
Message:

Fixed #859

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/framework/Exceptions/TErrorHandler.php

    r2466 r2469  
    7878        { 
    7979                $this->getApplication()->setErrorHandler($this); 
     80        } 
     81 
     82        /** 
     83         * @return string the directory containing error template files. 
     84         */ 
     85        public function getErrorTemplatePath() 
     86        { 
    8087                if($this->_templatePath===null) 
    8188                        $this->_templatePath=Prado::getFrameworkPath().'/Exceptions/templates'; 
    82         } 
    83  
    84         /** 
    85          * @return string the directory containing error template files. 
    86          */ 
    87         public function getErrorTemplatePath() 
    88         { 
    8989                return $this->_templatePath; 
    9090        }