SVN commit 1208944 by asouza: Remove all double quotes from the result Not sure why but just one call to replace leaves the last ' " ' on the url and then we need to call again to make it properly work. M +1 -1 main.js --- branches/KDE/4.6/kdebase/workspace/plasma/generic/dataengines/share/backends/wstaw/contents/code/main.js #1208943:1208944 @@ -34,5 +34,5 @@ provider.error(data); return; } - provider.success(res[0].replace("value=", "").replace("\"", "")); + provider.success(res[0].replace("value=", "").replace("\"", "").replace("\"", "")); }