mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Use replace() instead of replaceAll() as it's not supported in older browser versions
This commit is contained in:
parent
0fcfad04b4
commit
e549b6fcd9
@ -699,7 +699,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