Skip to content
This repository was archived by the owner on Feb 26, 2019. It is now read-only.

Commit 0c9552f

Browse files
committed
Fix space issue
1 parent ae8f753 commit 0c9552f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ngrok-local.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ public function __construct(){
1717
$this->site_url = site_url() . '/';;
1818

1919
if ( ! defined( 'WP_SITEURL' ) && ! defined( 'WP_HOME' ) ) {
20-
define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST']);
21-
define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST']);
20+
define( 'WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] );
21+
define( 'WP_HOME', 'http://' . $_SERVER['HTTP_HOST'] );
2222
} else {
2323
// bail if those constant are already defined
2424
return false;

0 commit comments

Comments
 (0)