In einem мудулей für joomla ist флэш der Walkman, und bei анлоаде die Seiten entsteht der Fehler im KodeВ одном из мудулей для joomla есть флэш плеер, и при анлоаде страницы возникает ошибка в коде

11
22
33
 function __ flash __ removeCallback (instance, name) { function __flash__removeCallback(instance, name) {
 instance [name] = null;  instance[name] = null;
}

instance zeigt es sich null, aber in diesem Fall wo dieser Kode ich, finden nicht konnte. Deshalb damit dieser Fehler сёрфить die Webseite nicht störte, es ist nötig zu ergänzen:instance в данном случае оказывается null, но где этот код я найти не смог. Поэтому чтобы эта ошибка не мешала сёрфить сайт, следует добавить:

11
22
33
44
55
66
77
88
99
window.addEvent (' beforeunload ', function () {window.addEvent('beforeunload', function() {

window. __ flash __ removeCallback = window.__flash__removeCallback =
(function () { (function() {
return function (instance, name) { return function(instance, name) {
if (instance) instance [name] = null; if (instance) instance[name] = null;
};//IE 6 dangling semicolon needed }; // IE 6 dangling semicolon needed
}) ();//force another closure to prevent IE memory leaks })(); // force another closure to prevent IE memory leaks
});