作者/来源:yixinu.com
栏目:运维/编程
日期:2014-04-11 16:19:51
找以 html/js/common.js
注释掉 266到271就行了,因为extmail用js来控制标题的显示。。
264 function setTitle(text) {
265 /*
266 if (text == null | text == '') {
267 text = 'ExtMail';
268 } else {
269 text = 'ExtMail - ' + text;
270 }
271 */
272 try {
273 this.parent.document.title = text;
274 this.document.title = text;
275 }
276 catch (e)
277 {
278 }
279 }