Approve new members.

Karl

Member
How can I go about getting the members URL in the approve new members area to open in a new window so that can check the submitted site without having the link take me out of the admin panel as it works at the moment.
 

Basti

Administrator
Staff member
in sources/admin/approve.php

change this
PHP:
<a href="{$url}" onclick="out('{$username}');">{$title}</a>
to this
PHP:
<a href="{$url}" onclick="out('{$username}');" target="_blank">{$title}</a>
Or simply open a new tab by clicking the mousewheel or right click -> new tab on the link.
 
Top