diff options
Diffstat (limited to 'includes/classes/BitPage.php')
| -rwxr-xr-x | includes/classes/BitPage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/classes/BitPage.php b/includes/classes/BitPage.php index d120120..61087c1 100755 --- a/includes/classes/BitPage.php +++ b/includes/classes/BitPage.php @@ -166,7 +166,7 @@ class BitPage extends LibertyMime implements BitCacheable { global $gBitSystem; $lookupColumn = BitBase::verifyId( $this->mPageId ) ? 'page_id' : 'content_id'; - $parse = true; // ( !isset( $pPluginParams['parse'] ) or $pPluginParams['parse'] ) ? true : false; + $parse = $_REQUEST['parse'] ?? true; $bindVars = []; $selectSql = ''; $joinSql = ''; $whereSql = ''; array_push( $bindVars, $lookupId = BitBase::verifyId( $this->mPageId )? $this->mPageId : $this->mContentId ); $this->getServicesSql( 'content_load_sql_function', $selectSql, $joinSql, $whereSql, $bindVars ); |
