mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-24 22:21:34 +01:00
fixed javascript error stalling everything: et2_csvSplit is not yet defined, thought I dont understand why this is needed here anyway: using _name.split("/",2)
This commit is contained in:
parent
407570090d
commit
dd410d49fb
@ -57,8 +57,8 @@ egw.extend('images', egw.MODULE_GLOBAL, function() {
|
|||||||
// Handle images in appname/imagename format
|
// Handle images in appname/imagename format
|
||||||
if(_name.indexOf('/') > 0)
|
if(_name.indexOf('/') > 0)
|
||||||
{
|
{
|
||||||
var split = et2_csvSplit(_name, 2,"/");
|
var split = _name.split('/',2);
|
||||||
var _app = split[0];
|
_app = split[0];
|
||||||
_name = split[1];
|
_name = split[1];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user