Format forum URLs correctly
[ci skip] * Use https:// over http:// * Use 'forums' over 'forum'
This commit is contained in:
parent
1408da68ce
commit
e11cc5f522
3 changed files with 4 additions and 4 deletions
|
@ -92,7 +92,7 @@
|
|||
tooltip = _ "You may login to the official multiplayer server with your forum username and password.
|
||||
Note that registration is not required to join the server: you need to supply a password only if you wish to use a registered username.
|
||||
|
||||
The Battle for Wesnoth forum can be found at http://forums.wesnoth.org/"
|
||||
The Battle for Wesnoth forum can be found at https://forums.wesnoth.org/"
|
||||
[/text_box]
|
||||
|
||||
[/column]
|
||||
|
|
|
@ -53,7 +53,7 @@ fuh::~fuh() {
|
|||
}
|
||||
|
||||
void fuh::add_user(const std::string& /*name*/, const std::string& /*mail*/, const std::string& /*password*/) {
|
||||
throw error("For now please register at http://forum.wesnoth.org");
|
||||
throw error("For now please register at https://forums.wesnoth.org");
|
||||
}
|
||||
|
||||
void fuh::remove_user(const std::string& /*name*/) {
|
||||
|
@ -160,7 +160,7 @@ void fuh::set_is_moderator(const std::string& name, const bool& is_moderator) {
|
|||
|
||||
void fuh::password_reminder(const std::string& /*name*/) {
|
||||
throw error("For now please use the password recovery "
|
||||
"function provided at http://forum.wesnoth.org");
|
||||
"function provided at https://forums.wesnoth.org");
|
||||
}
|
||||
|
||||
std::string fuh::user_info(const std::string& name) {
|
||||
|
|
|
@ -782,7 +782,7 @@ void server::send_password_request(socket_ptr socket, const std::string& msg,
|
|||
if(user_handler_->use_phpbb_encryption() && pepper.empty()) {
|
||||
async_send_error(socket, "Even though your nickname is registered on this server you "
|
||||
"cannot log in due to an error in the hashing algorithm. "
|
||||
"Logging into your forum account on http://forum.wesnoth.org "
|
||||
"Logging into your forum account on https://forums.wesnoth.org "
|
||||
"may fix this problem.");
|
||||
login(socket);
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue