Google Adsense出现广告找不到网页的解决方法(适用DISCUZ)

将 Discuz 6.0 中./include/javascript/common.js 的push改为fever_push 。

原代码:

Array.prototype.push = function(value) {
this[this.length] = value;
return this.length;
}

新代码:

Array.prototype.fever_push = function(value) {
this[this.length] = value;
return this.length;
}

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>