diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-10-22 11:15:22 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-10-22 11:15:22 +0200 |
commit | 9144c22f40af1835708c066bcdfde5358b8c95b3 (patch) | |
tree | 2b2dfc4f814d2ad7779af089bde8f05376c2134d /lib | |
parent | fb15cab611b9b03bfde1bd3d64906c08fb443f3b (diff) | |
parent | fd18b5f4e227c2b114d961b81feecce658597226 (diff) | |
download | rpg-9144c22f40af1835708c066bcdfde5358b8c95b3.tar.gz rpg-9144c22f40af1835708c066bcdfde5358b8c95b3.tar.bz2 |
Merge pull request #909 from splitbrain/visibilityDokuCssFile
visibility from private to protected for DokuCssFile
Diffstat (limited to 'lib')
-rw-r--r-- | lib/exe/css.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/exe/css.php b/lib/exe/css.php index f7235fd4e..9645b96bc 100644 --- a/lib/exe/css.php +++ b/lib/exe/css.php @@ -421,7 +421,7 @@ class DokuCssFile { protected $filepath; // file system path to the CSS/Less file protected $location; // base url location of the CSS/Less file - private $relative_path = null; + protected $relative_path = null; public function __construct($file) { $this->filepath = $file; @@ -454,7 +454,7 @@ class DokuCssFile { * * @return string relative file system path */ - private function getRelativePath(){ + protected function getRelativePath(){ if (is_null($this->relative_path)) { $basedir = array(DOKU_INC); |