users complaining about the "you sure you wanna log out" dialog box. i found it in the
navbar template, but i'm kinda scared to delete the js function because i think that will cause an error, not just get rid of the popup?
im not sure
Code:
<script type="text/javascript">
<!--
function log_out()
{
ht = document.getElementsByTagName("html");
ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
if (confirm('$vbphrase[sure_you_want_to_log_out]'))
{
return true;
}
else
{
ht[0].style.filter = "";
return false;
}
}
//-->
</script>
can i just delete that?
thx for your time !!