diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-06-21 09:10:14 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-06-21 09:10:14 +0000 |
| commit | e888423e2518d0a19927c938825bd04cf7f41970 (patch) | |
| tree | 92f3bf7ee897956cee3ed2745dc3021f1db54093 /roundcubemail/program/include | |
| parent | e66313a863f2092e6321d136682aa294c7cdab6a (diff) | |
- Make local_skin_path() to be a public method
git-svn-id: https://svn.roundcube.net/trunk@4870 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include')
| -rw-r--r-- | roundcubemail/program/include/rcube_plugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/program/include/rcube_plugin.php b/roundcubemail/program/include/rcube_plugin.php index 09791374c..cce04cd3d 100644 --- a/roundcubemail/program/include/rcube_plugin.php +++ b/roundcubemail/program/include/rcube_plugin.php @@ -283,14 +283,14 @@ abstract class rcube_plugin else return $fn; } - + /** * Provide path to the currently selected skin folder within the plugin directory * with a fallback to the default skin folder. * * @return string Skin path relative to plugins directory */ - protected function local_skin_path() + public function local_skin_path() { $skin_path = 'skins/'.$this->api->config->get('skin'); if (!is_dir(realpath(slashify($this->home) . $skin_path))) |
