diff --git a/config.default.js b/config.default.js index e7a662b76b..7228221310 100644 --- a/config.default.js +++ b/config.default.js @@ -1,3 +1,12 @@ +/** + * READ ME! + * The config directives here are all different based on where NodeBB is installed. + * This config file system will be deprecated soon, and all configs will be moved + * to the redis db, under the hash "config" + * + * As of May 22nd, 2013, this migration hasn't started yet + */ + var config = { // The "secret" is used to encrypt cookie sessions, change this to any random string "secret": 'nodebb-secret', @@ -47,7 +56,10 @@ var config = { "privilege_thresholds": { "manage_thread": 1000, "manage_content": 2000 - } + }, + + "show_motd": true, + "motd": undefined } config.url = config.base_url + (config.use_port ? ':' + config.port : '') + '/'; diff --git a/public/src/templates.js b/public/src/templates.js index 9c88fc271f..34b8784be6 100644 --- a/public/src/templates.js +++ b/public/src/templates.js @@ -2,8 +2,7 @@ (function (module) { - var ready_callback, - config = {}, + var config = {}, templates, fs = null, available_templates = []; @@ -35,8 +34,19 @@ }; templates.ready = function(callback) { - if (callback == null && ready_callback) ready_callback(); - else ready_callback = callback; + if (callback == null) { + if (this.ready_callback) { + this.ready_callback(); + } else { + this.loaded = true; + } + } else { + if (this.loaded == true) { + callback(); + } else { + this.ready_callback = callback; + } + } }; templates.prepare = function(raw_tpl, data) { diff --git a/public/templates/header.tpl b/public/templates/header.tpl index 05d604b7d5..e5518d3dbb 100644 --- a/public/templates/header.tpl +++ b/public/templates/header.tpl @@ -1,8 +1,10 @@
-Welcome to NodeBB, the discussion platform of the future.
-- Get NodeBB - Fork us on Github - @dcplabs -
+