1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

Improved detection of deprecated functions/methods and display in DEBUG mode: deprecated.

This commit is contained in:
Cameron
2020-12-21 10:00:28 -08:00
parent 63527c4f19
commit 630f3f415f
30 changed files with 224 additions and 82 deletions

View File

@@ -3808,7 +3808,7 @@ class e_tree_model extends e_front_model
{
return $this->getNode($node_id)->toString($AddSlashes);
}
return (string) e107::getArrayStorage()->WriteArray($this->toArray($total), $AddSlashes);
return (string) e107::getArrayStorage()->serialize($this->toArray($total), $AddSlashes);
}
public function update($from_post = true, $force = false, $session_messages = false)