modulemanager: Change pairs() to ipairs() to allow ordered module loading
authorMatthew Wild <mwild1@gmail.com>
Mon, 12 Jan 2009 03:27:18 +0000 (03:27 +0000)
committerMatthew Wild <mwild1@gmail.com>
Mon, 12 Jan 2009 03:27:18 +0000 (03:27 +0000)
core/modulemanager.lua

index 7c1bc0d8b372300153f82d44ec0b6bf7a6221068..3481aac68fc84a8aea60b71276e74413f9519c72 100644 (file)
@@ -68,11 +68,11 @@ function load_modules_for_host(host)
        local disabled_set = {};
        if modules_enabled then
                if modules_disabled then
-                       for _, module in pairs(modules_disabled) do
+                       for _, module in ipairs(modules_disabled) do
                                disabled_set[module] = true;
                        end
                end
-               for _, module in pairs(modules_enabled) do
+               for _, module in ipairs(modules_enabled) do
                        if not disabled_set[module] then
                                load(host, module);
                        end