diff --git a/boot/boot.js b/boot/boot.js index 7396d7bff..b4bdc00f2 100644 --- a/boot/boot.js +++ b/boot/boot.js @@ -336,7 +336,7 @@ Get the browser location.hash. We don't use location.hash because of the way tha */ $tw.utils.getLocationHash = function() { var href = window.location.href; - var idx = href.indexOf("#"); + var idx = href.indexOf('#'); if(idx === -1) { return "#"; } else if(href.substr(idx + 1,1) === "#" || href.substr(idx + 1,3) === "%23") { @@ -605,7 +605,7 @@ var globalCheck =[ " delete Object.prototype.__temp__;", " }", " delete Object.prototype.__temp__;", -].join("\n"); +].join('\n'); /* Run code globally with specified context variables in scope @@ -1997,7 +1997,7 @@ $tw.loadTiddlersFromSpecification = function(filepath,excludeRegExp) { value = path.relative(rootPath, filename).split(path.sep).slice(0, -1); break; case "filepath": - value = path.relative(rootPath, filename).split(path.sep).join("/"); + value = path.relative(rootPath, filename).split(path.sep).join('/'); break; case "filename": value = path.basename(filename); @@ -2623,7 +2623,7 @@ $tw.boot.executeNextStartupTask = function(callback) { } taskIndex++; } - if(typeof callback === "function") { + if(typeof callback === 'function') { callback(); } return false; diff --git a/editions/multiwikiserver/tiddlywiki.info b/editions/multiwikiserver/tiddlywiki.info index d18bc5744..abc3e460d 100644 --- a/editions/multiwikiserver/tiddlywiki.info +++ b/editions/multiwikiserver/tiddlywiki.info @@ -11,9 +11,6 @@ "tiddlywiki/snowwhite" ], "build": { - "--mws-list-users": [ - "--mws-list-users" - ], "mws-add-user": [ "--mws-add-permission", "READ", "Allows user to create tiddlers", "--mws-add-permission", "WRITE", "Gives the user the permission to edit and delete tiddlers", diff --git a/plugins/tiddlywiki/multiwikiserver/auth/form/login/form.tid b/plugins/tiddlywiki/multiwikiserver/auth/form/login/form.tid index da027d65d..2dcd1e89d 100644 --- a/plugins/tiddlywiki/multiwikiserver/auth/form/login/form.tid +++ b/plugins/tiddlywiki/multiwikiserver/auth/form/login/form.tid @@ -1,6 +1,5 @@ title: $:/plugins/tiddlywiki/multiwikiserver/auth/form/login/form -<$macrocall $name="loginForm"/>