From dd410d49fbd2a6a09f715e801fb72d79c1d4fb5c Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 5 Apr 2012 07:38:07 +0000 Subject: [PATCH] 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) --- phpgwapi/js/jsapi/egw_images.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpgwapi/js/jsapi/egw_images.js b/phpgwapi/js/jsapi/egw_images.js index a70c29decb..a9d841e0c3 100644 --- a/phpgwapi/js/jsapi/egw_images.js +++ b/phpgwapi/js/jsapi/egw_images.js @@ -57,8 +57,8 @@ egw.extend('images', egw.MODULE_GLOBAL, function() { // Handle images in appname/imagename format if(_name.indexOf('/') > 0) { - var split = et2_csvSplit(_name, 2,"/"); - var _app = split[0]; + var split = _name.split('/',2); + _app = split[0]; _name = split[1]; } }