mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-06 23:52:58 +01:00
Call Plugins.addLanguages on reload. Fixes #3153
Ensures routes are set correctly for custom languages.
This commit is contained in:
@@ -67,11 +67,6 @@ var fs = require('fs'),
|
||||
emitter.emit('plugins:loaded');
|
||||
callback();
|
||||
});
|
||||
|
||||
Plugins.registerHook('core', {
|
||||
hook: 'static:app.load',
|
||||
method: addLanguages
|
||||
});
|
||||
};
|
||||
|
||||
Plugins.reload = function(callback) {
|
||||
@@ -84,6 +79,11 @@ var fs = require('fs'),
|
||||
Plugins.clientScripts.length = 0;
|
||||
Plugins.libraryPaths.length = 0;
|
||||
|
||||
Plugins.registerHook('core', {
|
||||
hook: 'static:app.load',
|
||||
method: addLanguages
|
||||
});
|
||||
|
||||
async.waterfall([
|
||||
function(next) {
|
||||
db.getSortedSetRange('plugins:active', 0, -1, next);
|
||||
|
||||
Reference in New Issue
Block a user