mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-26 18:03:39 +01:00
only try instanciating get_rows object, it a non-empty name given, else we get an error-message in the editor
This commit is contained in:
parent
0a104f1063
commit
b3249095a3
@ -147,7 +147,10 @@
|
||||
return True;
|
||||
}
|
||||
list($app,$class,$method) = explode('.',$value['get_rows']);
|
||||
$obj = CreateObject($app.'.'.$class);
|
||||
if ($app && $class)
|
||||
{
|
||||
$obj =& CreateObject($app.'.'.$class);
|
||||
}
|
||||
if (!is_object($obj) || !method_exists($obj,$method))
|
||||
{
|
||||
$GLOBALS['phpgw_info']['etemplate']['validation_errors'][$name] = "nextmatch_widget::pre_process($cell[name]): '$value[get_rows]' is no valid method !!!";
|
||||
|
Loading…
Reference in New Issue
Block a user