In function:
- Code: Select all
function tableHeaderRow($th)
You have a line that says:
- Code: Select all
$header = '<a href="' . $itemlink[$row['clientLocale']] . urlencode(utf8_decode(stripslashes($iname))) . '" target="_blank">' . $inst_name[$header] . '</a>';
But the function does not have a global for $row and when you look where this function is called, the $row variable has not been set to anything by the time it gets here.
Change the code to:
- Code: Select all
$header = '<a href="' . $itemlink[$roster_conf['roster_lang']] . urlencode(utf8_decode(stripslashes($iname))) . '" target="_blank">' . $inst_name[$header] . '</a>';
and the link is done correctly.