Index: custom/install.php =================================================================== --- custom/install.php (revision 13152) +++ custom/install.php (working copy) @@ -30,4 +30,4 @@ $toolkit->RunSQL('/' . $module_folder .'/install/install_data.sql'); $toolkit->ImportLanguage('/' . $module_folder .'/install/english'); - $toolkit->finalizeModuleInstall(basename($module_folder), false); \ No newline at end of file + $toolkit->finalizeModuleInstall($module_folder, false); \ No newline at end of file Index: in-auction/install.php =================================================================== --- in-auction/install.php (revision 13152) +++ in-auction/install.php (working copy) @@ -41,4 +41,4 @@ $toolkit->RunSQL('/' . $module_folder . '/install/install_data.sql'); $toolkit->ImportLanguage('/' . $module_folder . '/install/english'); - $toolkit->finalizeModuleInstall(basename($module_folder), false); \ No newline at end of file + $toolkit->finalizeModuleInstall($module_folder, false); \ No newline at end of file Index: in-auction/install/prerequisites.php =================================================================== --- in-auction/install/prerequisites.php (revision 13152) +++ in-auction/install/prerequisites.php (working copy) @@ -54,7 +54,7 @@ } if ($this->Application->isModuleEnabled('In-Commerce')) { - $current_version = $this->_toolkit->GetMaxModuleVersion('in-commerce'); + $current_version = $this->_toolkit->GetMaxModuleVersion('modules/in-commerce/'); $min_version = $this->_toolkit->ConvertModuleVersion('4.2.0'); if ($this->_toolkit->ConvertModuleVersion($current_version) < $min_version) { Index: in-bulletin/install.php =================================================================== --- in-bulletin/install.php (revision 13152) +++ in-bulletin/install.php (working copy) @@ -50,4 +50,4 @@ $toolkit->linkCustomFields('KERNEL', 'c', 1); // to create ItemTemplate custom field $toolkit->setModuleItemTemplate($category, 'bb', '#in-bulletin/item_design#'); - $toolkit->finalizeModuleInstall(basename($module_folder), true); \ No newline at end of file + $toolkit->finalizeModuleInstall($module_folder, true); \ No newline at end of file Index: in-commerce/install.php =================================================================== --- in-commerce/install.php (revision 13152) +++ in-commerce/install.php (working copy) @@ -50,4 +50,4 @@ $toolkit->linkCustomFields('KERNEL', 'c', 1); // to create ItemTemplate custom field $toolkit->setModuleItemTemplate($category, 'p', '#in-commerce/item_design#'); - $toolkit->finalizeModuleInstall(basename($module_folder), true); \ No newline at end of file + $toolkit->finalizeModuleInstall($module_folder, true); \ No newline at end of file Index: in-link/install.php =================================================================== --- in-link/install.php (revision 13152) +++ in-link/install.php (working copy) @@ -50,4 +50,4 @@ $toolkit->linkCustomFields('KERNEL', 'c', 1); // to create ItemTemplate custom field $toolkit->setModuleItemTemplate($category, 'l', '#in-link/item_design#'); - $toolkit->finalizeModuleInstall(basename($module_folder), true); \ No newline at end of file + $toolkit->finalizeModuleInstall($module_folder, true); \ No newline at end of file Index: in-news/install.php =================================================================== --- in-news/install.php (revision 13152) +++ in-news/install.php (working copy) @@ -50,4 +50,4 @@ $toolkit->linkCustomFields('KERNEL', 'c', 1); // to create ItemTemplate custom field $toolkit->setModuleItemTemplate($category, 'n', '#in-news/item_design#'); - $toolkit->finalizeModuleInstall(basename($module_folder), true); \ No newline at end of file + $toolkit->finalizeModuleInstall($module_folder, true); \ No newline at end of file