From 1b5beefb8d7b4449fc3ec1e109bd551daa7b635d Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Fri, 1 Jun 2012 18:26:55 +0100 Subject: [PATCH] Fixed default TW5 template --- core/modules/commands/server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/commands/server.js b/core/modules/commands/server.js index b673d34bb..5bcc3bb9e 100644 --- a/core/modules/commands/server.js +++ b/core/modules/commands/server.js @@ -31,7 +31,7 @@ Command.prototype.execute = function() { path = require("path"), http = require("http"), port = this.params[0] || "8080", - rootTiddler = this.params[1] || "$:/core/tiddlywiki5.template.html", + rootTiddler = this.params[1] || "$:/core/templates/tiddlywiki5.template.html", renderType = this.params[2] || "text/plain", serveType = this.params[3] || "text/html"; http.createServer(function(request, response) {