PDA

View Full Version : logout verification - how to disable


doob
09-15-2010, 01:49 AM
When you click "Logout" a popup window requests verification. Can the verification part be disabled so its a 1 click process?

kh99
09-18-2010, 01:49 PM
I think you can just edit the navbar template and change

<td class="vbmenu_control">
<a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')">$vbphrase[log_out]
</a>
</td>

to

<td class="vbmenu_control">
<a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]">$vbphrase[log_out]
</a>
</td>


(remove the part in red)

sulasno
09-18-2010, 01:55 PM
thanks

doob
09-22-2010, 04:28 AM
Thanks. I'll give that a try.