--- a/wp/wp-config-sample.php Tue Oct 22 16:11:46 2019 +0200
+++ b/wp/wp-config-sample.php Tue Dec 15 13:49:49 2020 +0100
@@ -13,7 +13,7 @@
* * Database table prefix
* * ABSPATH
*
- * @link https://codex.wordpress.org/Editing_wp-config.php
+ * @link https://wordpress.org/support/article/editing-wp-config-php/
*
* @package WordPress
*/
@@ -73,9 +73,9 @@
* in their development environments.
*
* For information on other constants that can be used for debugging,
- * visit the Codex.
+ * visit the documentation.
*
- * @link https://codex.wordpress.org/Debugging_in_WordPress
+ * @link https://wordpress.org/support/article/debugging-in-wordpress/
*/
define( 'WP_DEBUG', false );
@@ -83,8 +83,8 @@
/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
- define( 'ABSPATH', dirname( __FILE__ ) . '/' );
+ define( 'ABSPATH', __DIR__ . '/' );
}
/** Sets up WordPress vars and included files. */
-require_once( ABSPATH . 'wp-settings.php' );
+require_once ABSPATH . 'wp-settings.php';