For the last 2 or 3 websites I have built I get a warning the first time I scan about "The Modified Version on your WordPress system"
On "viewing file differences" it shows that Filename:wp-config-sample.php has been mofified from:
/** Sets up WordPress vars and included files. */
80 require_once(ABSPATH . 'wp-settings.php');
to
/** Sets up WordPress vars and included files. */
80 require_once(ABSPATH . 'wp-settings.php');
81 81
82 /**
83 * Include tweaks requested by hosting providers. You can safely
84 * remove either the file or comment out the lines below to get
85 * to a vanilla state.
86 */
87 if (file_exists(ABSPATH . 'hosting_provider_filters.php')) {
88 include('hosting_provider_filters.php');
89 }
The first couple of times I reverted to the original version but now wonder why it is happening and whether I should do anything different.
I'd be grateful for any advice.