My hosting service upgraded my PHP version to 7.4 without notice. I'm now reciving the following error in the error log that points to the tbs_class.php
PHP Warning: count(): Parameter must be an array or an object that implements Countable in tbs_class.php on line 2206
/**
*
function meth_Merge_Block(&$Txt,$BlockLst,&$SrcId,&$Query,$SpePrm,$SpeRecNum,$QryPrms=false) {
$BlockSave = $this->_CurrBlock;
$this->_CurrBlock = $BlockLst;
// Get source type and info
$Src = new clsTbsDataSource;
if (!$Src->DataPrepare($SrcId,$this)) {
$this->_CurrBlock = $BlockSave;
return 0;
}
if (is_string($BlockLst)) $BlockLst = explode(',', $BlockLst);
**$BlockNbr = count($BlockLst);**
$BlockId = 0;
$WasP1 = false;
$NbrRecTot = 0;
$QueryZ = &$Query;
$ReturnData = false;
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…