1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Fixes #3715 Prevent error when load() is missing from e_admin.php

This commit is contained in:
Cameron
2019-03-12 11:16:43 -07:00
parent a32b6bffd9
commit c4c661cfac

View File

@@ -6634,7 +6634,9 @@ class e_admin_form_ui extends e_form
{
$ids = implode(",", array_keys($var));
$value = (array) $obj->load($event, $ids);
$value = (array) e107::callMethod($obj,'load', $event,$ids);
// $value = (array) $obj->load($event, $ids);
foreach($var as $id=>$model)
{