How to config that the PM Popupalertbox is normal showing ,but on click on "OK" to get imidiately redirected to the pmpopupurl . without to get another alertbox showing...
the teamplate for the "pm_popup_script " is looking like this:
PHP Code:
<script type="text/javascript">
<!--
// script to show new private message popup
if (confirm("<phrase 1="$newpm[username]" 2="$newpm[title]">$vbphrase[have_new_pm_popup_x_y]</phrase>"))
{
// Output when OK is clicked
if (confirm("$vbphrase[open_message_in_new_window]"))
{
var winobj = window.open("$pmpopupurl", "pmnew", "statusbar=yes,menubar=yes,scrollbars=yes,toolbar=yes,location=yes,directories=yes,resizable=yes,top=50,left=50");
if (winobj == null)
{
alert("$vbphrase[window_open_failed_blocker]");
}
}
else
{
window.location = "$pmpopupurl";
}
}
// end pm popup script
//-->
</script>
the part with the popup should bereplaced with
window.location = "$pmpopupurl"; i think.
but it is not working.
i would be very thankfull if someone can test it. its a usefull thing because popupblocker are standart now.
best regards
ghostt