Skip to content
Snippets Groups Projects
Commit 3c9ed9a2 authored by uhensler's avatar uhensler
Browse files

OO-3937: Building the URL of Collabora Office the right way

parent 7cbbf3e4
No related branches found
No related tags found
No related merge requests found
......@@ -99,16 +99,16 @@ class CollaboraEditorUrlBuilder {
}
if (StringHelper.containsNonWhitespace(permission)) {
url.append("?permission=").append(permission);
url.append("&permission=").append(permission);
}
if (closeButton) {
// Apparently that parameter is ignored. The close button is always visible!
url.append("?closebutton=1");
url.append("&closebutton=1");
}
if (debug) {
url.append("?debug=1");
url.append("&debug=1");
}
return url.toString();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment