forked from extern/egroupware
Use replace() instead of replaceAll() as it's not supported in older browser versions
This commit is contained in:
parent
187a46ff51
commit
f3ac970be2
@ -680,7 +680,7 @@ var fw_base = (function(){ "use strict"; return Class.extend(
|
||||
var app = this.parseAppFromUrl(_link);
|
||||
if (app)
|
||||
{
|
||||
var appname = app.appName+"-"+btoa(_extra.id ? _extra.id : _link).replaceAll('=','');
|
||||
var appname = app.appName+"-"+btoa(_extra.id ? _extra.id : _link).replace(/=/g,'i');
|
||||
this.applications[appname] = this.getApplicationByName(appname);
|
||||
if (this.applications[appname])
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user