Index: branches/RC/admin/install.php =================================================================== diff -u -r10235 -r10238 --- branches/RC/admin/install.php (.../install.php) (revision 10235) +++ branches/RC/admin/install.php (.../install.php) (revision 10238) @@ -1493,13 +1493,14 @@ $ado =& inst_GetADODBConnection(); require_once $pathtoroot.'kernel/include/tag-class.php'; if( !isset($objTagList) || !is_object($objTagList) ) $objTagList = new clsTagList(); - + + // TODO: make possible to define module install order (e.g. via special order file in module directory, because db info is not available before module is installed) $ebay_key = array_search('in-auction', $doms); - if ($ebay_key !== false) - { + if ($ebay_key !== false) { unset($doms[$ebay_key]); $doms[] = 'in-auction'; } + foreach($doms as $p) { $filename = $pathtoroot.$p.'/admin/install.php';