Commit de4e3f0d authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Fix the name of the wp-config.php extras file

Match the name of the default wp-config.php extras file to
wp-config.php (i.e. use hyphens instead of underscores).
parent 782dcfe0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ create_config()
		return 0
	fi

	[[ ${WP_CONFIG_EXTRA:=/etc/wordpress/wp_config_extra.php} =~ ^/ ]] ||
	[[ ${WP_CONFIG_EXTRA:=/etc/wordpress/wp-config-extra.php} =~ ^/ ]] ||
		WP_CONFIG_EXTRA=/etc/wordpress/${WP_CONFIG_EXTRA}
	[[ -r ${WP_CONFIG_EXTRA} ]] &&
		additional_config=${WP_CONFIG_EXTRA}