Hello all,
When i drag & drop a mail (or use the Send & remind option) to Zimlet Email Reminder by rrao, Firebug shows :
And reminder is not set.
The function in agregatted js file is :
Any solutions to this ?
Thanks in advance !
When i drag & drop a mail (or use the Send & remind option) to Zimlet Email Reminder by rrao, Firebug shows :
Code:
uncaught exception: ZmCsfeException
if(h.split(/[\?#]/)[0]==(""+window.location).split(/[\?#]/)[0]){
The function in agregatted js file is :
Code:
Com_Zimbra_Url.prototype._getHtmlContent=function(r,d,s,e){
var h=s.replace(/\"/g,'"').replace(/^\s+|\s+$/g,"");
if(h.substr(0,4)=="www."){
h="http://"+h
}
if(h.indexOf("\\\\")==0){
s.isUNC=true;
h="file://"+h
}
h=h.replace(/\\/g,"/");
var l="<a target='_blank' href='"+h;
if(h.split(/[\?#]/)[0]==(""+window.location).split(/[\?#]/)[0]){
var n=h.substr(h.indexOf("?"));
if(n){
var o=AjxStringUtil.parseQueryString(h);
if(o){
var t=o.app;
if(t&&t.length>0){
t=t.toUpperCase();
if(appCtxt.getApp(ZmApp[t])){
l="<a href='javascript:top.appCtxt.getAppController().activateApp(top.ZmApp."+t+", null, null);"
}}}}}
r[d++]=l;
r[d++]="'>";
r[d++]=AjxStringUtil.htmlEncode(s);
r[d++]="</a>";
return d
};
Thanks in advance !