You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In CubeCart->getDocument(), near line 155, there is this in the statement:
array('doc_home' => true, 'doc_status' => '1')
The schema for CubeCart_documents.doc_home is a data type of tinyint. While true does resolve to a non-zero-ish value (non-strict), there is trouble on the horizon.
PHP 8.1 says: Argument of type bool for ctype_alnum() will be interpreted as string in the future." (This relates to Database->where() near line 926:
In
CubeCart->getDocument()
, near line 155, there is this in the statement:The schema for
CubeCart_documents.doc_home
is a data type oftinyint
. Whiletrue
does resolve to anon-zero-ish
value (non-strict), there is trouble on the horizon.PHP 8.1 says: Argument of type bool for ctype_alnum() will be interpreted as string in the future." (This relates to
Database->where()
near line 926:Suggest:
The text was updated successfully, but these errors were encountered: