1
I just noticed that the current version of XOOPS and PHPNUKE function looks identical when you right click and view-source:
function SymError()
{
return true;
}
window.onerror = SymError;
var SymRealWinOpen = window.open;
function SymWinOpen(url, name, attributes)
{
return (new Object());
}
window.open = SymWinOpen;
I know that 2.0x is a complete rewrite and is not suppose to have any remnance of phpnuke. So which leads to the question...who copied who?