Index: branches/5.2.x/core/units/helpers/skin_helper.php =================================================================== diff -u -r14244 -r14628 --- branches/5.2.x/core/units/helpers/skin_helper.php (.../skin_helper.php) (revision 14244) +++ branches/5.2.x/core/units/helpers/skin_helper.php (.../skin_helper.php) (revision 14628) @@ -1,6 +1,6 @@ Application->getCache($cache_key); @@ -159,8 +160,9 @@ * * @param bool $url * @return string + * @access protected */ - function _getStylesheetPath($url = false) + protected function _getStylesheetPath($url = false) { if ($url) { return $this->Application->BaseURL( str_replace(DIRECTORY_SEPARATOR, '/', WRITEBALE_BASE) ) . 'user_files'; @@ -172,15 +174,16 @@ /** * Returns full path to primary admin skin using given or last compiled date * - * @param string $url + * @param string|bool $url * @param int $compile_date * @return string + * @access public */ - function getSkinPath($url = false, $compile_date = null) + public function getSkinPath($url = false, $compile_date = null) { $style_info = $this->_getStyleInfo(); - if (!isset($compile_date)) { + if ( !isset($compile_date) ) { $compile_date = $style_info['LastCompiled']; }