diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index c8554291c..af44b3689 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1967,6 +1967,7 @@ define([ this.api.asc_pluginRun(plugins.autoStartGuid, 0, ''); } else if (plugins.autostart && plugins.autostart.length>0) { // run array of plugins + this.api.asc_pluginRun(plugins.autostart[0], 0, ''); } } if (!uiCustomize) this.getApplication().getController('LeftMenu').enablePlugins(); diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 78cad48d8..6a074a677 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -1739,6 +1739,7 @@ define([ this.api.asc_pluginRun(plugins.autoStartGuid, 0, ''); } else if (plugins.autostart && plugins.autostart.length>0) { // run array of plugins + this.api.asc_pluginRun(plugins.autostart[0], 0, ''); } } if (!uiCustomize) this.getApplication().getController('LeftMenu').enablePlugins(); diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 25a4d8467..7202a6606 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -1933,6 +1933,7 @@ define([ this.api.asc_pluginRun(plugins.autoStartGuid, 0, ''); } else if (plugins.autostart && plugins.autostart.length>0) { // run array of plugins + this.api.asc_pluginRun(plugins.autostart[0], 0, ''); } } if (!uiCustomize) this.getApplication().getController('LeftMenu').enablePlugins();