1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 11:36:08 +02:00

Issue #2146 PHP 7.3 class compatibility fix. More testing required.

This commit is contained in:
Cameron
2019-06-03 16:29:38 -07:00
parent ce7f3feb38
commit 62863b4934
9 changed files with 30 additions and 29 deletions

View File

@@ -1738,7 +1738,7 @@ class e_model extends e_object
* - clearModelCache: e_tree_model class/subclasses - clear cache per node after successful DB operation
* - noCacheStringModify: e_tree_model class/subclasses - do not add additional md5 sum to tree cache string
* @param array $params
* @return e_model
* @return e_model|e_tree_model
*/
public function setParams(array $params)
{
@@ -3194,7 +3194,7 @@ class e_tree_model extends e_front_model
/**
* Set table name
* @param object $table
* @param string $table
* @return e_tree_model
*/
public function setModelTable($table)
@@ -3328,7 +3328,7 @@ class e_tree_model extends e_front_model
*
* @return e_tree_model
*/
public function load($force = false)
public function loadBatch($force = false)
{
if ($force)
{