
04-14-2006, 05:24 AM
|
|
|
Join Date: Apr 2005
Location: Canada
Posts: 388
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by sv1cec
Try this.
In Warn.php find:
Code:
$slcomment=$vbulletin->GPC['comment'];
Add below that:
Code:
if ($slcomment=='')
{
$message_left="{$user['username']} could not be warned because you did not enter a reason for the warning. Please go <a href='javascript:history.go(-1)'>back</a> and try again.";
}
else
{
Then in the same file, find:
Code:
$url="showthread.php?p={$post}";
eval('$warn_page .= "' . fetch_template('warn_redirect') . '";');
Replace that with:
Code:
}
$url="showthread.php?p={$post}";
eval('$warn_page .= "' . fetch_template('warn_redirect') . '";');
Let me know if it works. Note that I edited the code this morning, so please make sure you are using the latest one, as it appears above.
Also, you do not have to use the "Back" javascript, it will redirect you automatically.
|
worked famously!  thanks muchly!
for the non-post related warnings the last bit should be:
Quote:
}
$url="member.php?u={$vbulletin->GPC['id']}";
eval('$warn_page .= "' . fetch_template('warn_redirect') . '";');
|
|