Closed Filoz closed 4 years ago
Hello, thanks for the pull request, few lines above your changes
the variable $wp_path = dirname( __FILE__ );
your line seems redundant, feel free to reply and re-open this pull request
Hi,
I removed a repetition that generates a wrong path:
Before my suggested edit
require(dirname(__FILE__) . "{$wp_path}/{$bootstrap_file}");
after
require("{$wp_path}/{$bootstrap_file}");
Could post an example please? We are testing again the 4.0 branch for a release, we don't have problems with paths.
Removed dirname(FILE) because it create a wrong path dirname(FILE) is called before at https://github.com/interconnectit/Search-Replace-DB/blob/4.0/index.php#L704