Hi,

Small bug in smfforum v5. When set to SMFForum master registration, the Drupal blocks display the url for the registration form as http://www.example.com?action=register, which of course doesn't work. If you change the SMFForum path setting so that it includes the index.php of course you get an error in the admin settings because the path is for directories only.

So I'm adding '/index.php' in the places shown in smfforum.module to get my links to work.

if ($smf_master && !empty($scripturl)) {
if (variable_get("smfforum_page_frame", 0) == 1) {
global $base_url;
$scripturl = $base_url ."/". drupal_get_path_alias(SMF_PAGE);
}
$new_account = $scripturl .'/index.php?action=register';
$new_password = $scripturl .'/index.php?action=reminder';

$items = array();
if (variable_get('user_register', 1)) {
$items[] = l(t('Create new account'), $new_account, array('title' => t('Create a new user account.')));
}
$items[] = l(t('Request new password'), $new_password, array('title' => t('Request new password via e-mail.')));
$form['links'] = array('#value' => theme('item_list', $items));
}
}