Skip to content
Snippets Groups Projects
Commit 72e7c867 authored by ale's avatar ale
Browse files

Fix include paths

parent 7c857273
No related branches found
No related tags found
No related merge requests found
Pipeline #12385 passed
......@@ -4,7 +4,7 @@
// Load wordpress api.
define('WP_CACHE',false);
require_once(__DIR__ . '../wp/wp-load.php');
require_once(__DIR__ . '/wp-load.php');
// Return all blogs.
function get_blogs() {
......
......@@ -9,7 +9,7 @@ $noblogs_master = parse_url($master_url)['host'];
// Load wordpress api.
define('WP_CACHE',false);
require_once(__DIR__ . '../wp/wp-load.php');
require_once(__DIR__ . '/wp-load.php');
// Port that the noblogs apache2 instance is listening on (as a string).
define('NOBLOGS_PORT','92');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment