Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Fix WP_CONTENT_DIR for BOX_DIRECTORY_LAYOUT == 'skeleton'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeschinkel committed May 6, 2019
1 parent ce87c13 commit bf595c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/wp-config.php
Expand Up @@ -69,7 +69,7 @@

} else if ( 'skeleton' === BOX_DIRECTORY_LAYOUT ) {
define( 'WP_SITEURL', BOX_URL_SCHEME . '://' . SITE_DOMAIN . '/wp' );
define( 'WP_CONTENT_DIR', dirname( __FILE__ ) . '/content' );
define( 'WP_CONTENT_DIR', dirname( dirname( __FILE__ ) ) . '/content' );
define( 'WP_CONTENT_URL', BOX_URL_SCHEME . '://' . SITE_DOMAIN . '/content' );
}

Expand Down

0 comments on commit bf595c7

Please sign in to comment.