Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
fixed #338: "undefined" in reorder extension scripts
Browse files Browse the repository at this point in the history
When editing option “ScriptOrder” in web-interface.
  • Loading branch information
hugbug committed Feb 24, 2017
1 parent d5e881c commit 1b94373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2105,7 +2105,7 @@ var ScriptListDialog = (new function($)

var availableScripts = [];
var availableAllScripts = [];
for (var i=1; i < config.length; i++)
for (var i=2; i < config.length; i++)
{
availableAllScripts.push(config[i].scriptName);
var accept = !kind;
Expand Down

0 comments on commit 1b94373

Please sign in to comment.