So I can more easily identify the subdomain of the last url in Who's Online (using multisite - multiple subdomains on same ZC install) I'm trying to include HTTP_SERVER in Admin/whos_online.php to get the full url, I'm assuming that's the way to go.
Changing, around line 413
toPHP Code:$lastURLlink = '<a href="' . zen_output_string_protected($whos_online->fields['last_page_url']) . '" target="_blank">' . '<u>' . zen_output_string_protected($whos_online->fields['last_page_url']) . '</u>' . '</a>';
has no effect, any ideas on what I need to do?PHP Code:$lastURLlink = '<a href="' . HTTP_SERVER . zen_output_string_protected($whos_online->fields['last_page_url']) . '" target="_blank">' . '<u>' . zen_output_string_protected($whos_online->fields['last_page_url']) . '</u>' . '</a>';


Reply With Quote

