diff options
| author | spider@app1 <spiderr@bitweaver.org> | 2016-07-07 23:29:45 -0400 |
|---|---|---|
| committer | spider@app1 <spiderr@bitweaver.org> | 2016-07-07 23:29:45 -0400 |
| commit | 945244c514c9230b483ff3949e604d22d4873694 (patch) | |
| tree | 7f094ce08f5b43b6aefb5707c06514be8ac59233 | |
| parent | 12ae87c61898e47e3e509e8596b8fb71a7859717 (diff) | |
| download | themes-945244c514c9230b483ff3949e604d22d4873694.tar.gz themes-945244c514c9230b483ff3949e604d22d4873694.tar.bz2 themes-945244c514c9230b483ff3949e604d22d4873694.zip | |
tweak loadLayout for empty pParamHash
| -rw-r--r-- | BitThemes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BitThemes.php b/BitThemes.php index ee32df2..bac99e6 100644 --- a/BitThemes.php +++ b/BitThemes.php @@ -438,7 +438,7 @@ class BitThemes extends BitSingleton { */ function loadLayout( $pParamHash = NULL ) { global $gBitSystem; - if( empty( $this->mLayout ) || !count( $this->mLayout )){ + if( !empty( $pParamHash ) || empty( $this->mLayout ) || !count( $this->mLayout )) { $this->mLayout = $this->getLayout( $pParamHash ); /** |
