-
Bug
-
Resolution: Fixed
-
Trivial
-
3.0.7-PL1
-
None
if (!$row)
|
{
|
trigger_error($user->lang['PARENT_NOT_EXIST'] . adm_back_link($this->u_action . '&' . $this->parent_id), E_USER_WARNING);
|
}
|
should be:
if (!$row)
|
{
|
trigger_error($user->lang['PARENT_NOT_EXIST'] . adm_back_link($this->u_action . '&parent_id=' . $this->parent_id), E_USER_WARNING);
|
}
|