Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conversions/end.inc
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function coder_upgrade_upgrade_end_alter($dirname) {
$install_file = $module_path . $module_name . '.install';
if (!file_exists($install_file)) {
// Create an install file.
$install_file = $module_path . $item['module'] . '.install';
$install_file = $module_path . $module_name . '.install';
if (!file_exists($install_file)) {
$result = file_put_contents($install_file, "<?php\n/**\n * @file\n * Install, update and uninstall functions for the $module_name module.\n *\n */\n\nfunction xxx() {}");
}
Expand Down