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:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user