TypeError: tagName is null
在自定义模块相关列表中单击添加电子邮件时出现错误。
我正在使用来自帐户模块 的Accounts.php代码。
function get_emails($id, $cur_tab_id, $rel_tab_id, $actions=false) {
global $log, $singlepane_view,$currentModule,$current_user, $adb;
$log->debug("Entering get_emails(".$id.") method ...");
$this_module = $currentModule;
$related_module = vtlib_getModuleNameById($rel_tab_id);
require_once("modules/$related_module/$related_module.php");
$other = new $related_module();
vtlib_setup_modulevars($related_module, $other);
$singular_modname = vtlib_toSingular($related_module);
$parenttab = getParentTab();
if ($singlepane_view == 'true')
$returnset = '&return_module=' . $this_module
. '&return_action=DetailView&return_id=' . $id;
else
$returnset = '&return_module=' . $this_module
. '&return_action=CallRelatedList&return_id=' . $id;
$button = '';
$button .= '<input type="hidden" name="email_directing_module">
<input type="hidden" name="record">';
.....all code from that file....modules/Accounts/Accuonts.php
if ($return_value == null) $return_value = Array();
$return_value['CUSTOM_BUTTON'] = $button;
$log->debug("Exiting get_emails method ...");
return $return_value;
}
请为此提供帮助。提前致谢。