diff --git a/core/modules/pluginswitcher.js b/core/modules/pluginswitcher.js index 8d80032ab..f8b759e5a 100644 --- a/core/modules/pluginswitcher.js +++ b/core/modules/pluginswitcher.js @@ -61,6 +61,7 @@ PluginSwitcher.prototype.switchPlugins = function() { }; accumulatePlugin(selectedPluginTitle); var selectedPluginTiddler = this.wiki.getTiddler(selectedPluginTitle); + // Accumulate any other plugins of the same type with the same name this.wiki.eachTiddlerPlusShadows(function(tiddler,title) { if(tiddler.isPlugin() && tiddler.fields["plugin-type"] === self.pluginType && tiddler.fields.name === selectedPluginTiddler.fields.name) { accumulatePlugin(title);