-
Improvement
-
Resolution: Fixed
-
Trivial
-
3.0.8
-
None
-
n/a
overall_header.html in prosilver has the following code:
<!-- IF S_USER_PM_POPUP -->
|
if ({S_NEW_PM})
|
{
|
var url = '{UA_POPUP_PM}';
|
window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
|
}
|
<!-- ENDIF -->
|
should be changed to:
<!-- IF S_USER_PM_POPUP and S_NEW_PM-->
|
var url = '{UA_POPUP_PM}';
|
window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400');
|
}
|
<!-- ENDIF -->
|
this will a save a few (precious) bytes on every page request.