返回列表 回復 發帖

Discuz forum donot show google adsense solution

Discuz forum donot show google adsense solution

Discuz series do not show google adsense forum solution
The problem arises in the common.js
To comment out this ad can be displayed
Array.prototype.push = function (value) (
         this [this.length] = value;
         return this.length;
)
OR Alternative
if(typeof Array.prototype.push === 'undefined') {
Array.prototype.push = function(value) {
this[this.length] = value;
return this.length;
}
}
附件: 您所在的用戶組無法下載或查看附件
返回列表