Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #112 from oskosk/fix/fatal
Browse files Browse the repository at this point in the history
Fix wrong name in reference to return value when adding SSL fails
  • Loading branch information
oskosk authored Apr 10, 2018
2 parents dc67268 + 02109c3 commit 96103e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion features/ssl.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
if ( is_wp_error( $response ) ) {
debug( 'Error enabling SSL for %s. Check the next log line for a dump of the WP_Error', $domain );
debug( print_r( $response, true ) );
throw new \Exception( 'Error creating sysuser: ' . $return->get_error_message() );
throw new \Exception( 'Error enabling SSL: ' . $response->get_error_message() );
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion jurassic.ninja.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
/*
* Plugin Name: Jurassic Ninja
* Description: Launch ephemeral instances of WordPress + Jetpack using ServerPilot and an Ubuntu Box.
* Version: 3.2
* Version: 3.2.1
* Author: Osk
**/

Expand Down

0 comments on commit 96103e6

Please sign in to comment.