It is not an exact link that generates the Login page, but a standard_error redirect.
What you can do is make a new file, e.g. called userlogin.php, copy it to your /forums directory, with the following content:
PHP Code:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
// is user logged in?
if (!$bbuserinfo['userid']) {
print_no_permission();
}
else {
$url = "index.php?$session[sessionurl]";
eval(print_standard_redirect('redirect_login'));
}
?>
That should do the trick :P
Greets
Alex