diff options
| -rw-r--r-- | BitThemes.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/BitThemes.php b/BitThemes.php index dd16e89..c9f7f6f 100644 --- a/BitThemes.php +++ b/BitThemes.php @@ -218,7 +218,7 @@ class BitThemes extends BitBase { if( empty( $pStyle )) { $pStyle = $this->getStyle(); } - return BIT_ROOT_URL.'config/styles/layouts/'.$pStyle.'/'; + return CONFIG_PKG_URL.'themes/'.$pStyle.'/'; } /** @@ -232,7 +232,7 @@ class BitThemes extends BitBase { if( empty( $pStyle )) { $pStyle = $this->getStyle(); } - return BIT_ROOT_PATH.'config/styles/layouts/'.$pStyle.'/'; + return CONFIG_PKG_PATH.'themes/'.$pStyle.'/'; } /** @@ -248,7 +248,7 @@ class BitThemes extends BitBase { global $gBitSystem, $gBitUser; if( empty( $pDir )) { - $pDir = BIT_ROOT_PATH.'config/styles/layouts/'; + $pDir = CONFIG_PKG_PATH.'themes/'; } $ret = array(); @@ -337,7 +337,7 @@ class BitThemes extends BitBase { } if( empty( $pDir )) { - $pDir = BIT_ROOT_PATH.'config/styles/layouts/'; + $pDir = CONFIG_PKG_PATH.'themes/'; } if( !empty( $pNullOption )) { |
