diff --git a/html/ops/check_account_ownership_keys.php b/html/ops/check_account_ownership_keys.php index 892290ef9a..da3580a156 100644 --- a/html/ops/check_account_ownership_keys.php +++ b/html/ops/check_account_ownership_keys.php @@ -23,13 +23,13 @@ require_once("../inc/account_ownership.inc"); admin_page_head("Account Ownership Keys"); if (!file_exists($account_ownership_private_key_file_path)) { - echo "
The account ownership private key '" . $account_ownership_private_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script in the BOINC web server ops directory.
"; + echo "The account ownership private key '" . $account_ownership_private_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script from the command line in the BOINC web server ops directory.
"; } else { echo "The account ownership private key '" . $account_ownership_private_key_file_name . "' exists.
"; } if (!file_exists($account_ownership_public_key_file_path)) { - echo "The account ownership public key '" . $account_ownership_public_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script in the BOINC web server ops directory.
"; + echo "The account ownership public key '" . $account_ownership_public_key_file_name . "' doesn't exist. Please run the 'generate_account_ownership_keys.php' script from the command line in the BOINC web server ops directory.
"; } else { echo "The account ownership public key '" . $account_ownership_public_key_file_name . "' exists.
"; }