summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspider@app1 <spiderr@bitweaver.org>2016-07-07 23:29:45 -0400
committerspider@app1 <spiderr@bitweaver.org>2016-07-07 23:29:45 -0400
commit945244c514c9230b483ff3949e604d22d4873694 (patch)
tree7f094ce08f5b43b6aefb5707c06514be8ac59233
parent12ae87c61898e47e3e509e8596b8fb71a7859717 (diff)
downloadthemes-945244c514c9230b483ff3949e604d22d4873694.tar.gz
themes-945244c514c9230b483ff3949e604d22d4873694.tar.bz2
themes-945244c514c9230b483ff3949e604d22d4873694.zip
tweak loadLayout for empty pParamHash
-rw-r--r--BitThemes.php2
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 );
/**