1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 17:04:47 +02:00

Fix a missing command description in hs_request.

This commit is contained in:
Sadie Powell
2025-09-28 14:58:35 +01:00
parent 5b8018eb80
commit 1275fd01a7
+7 -1
View File
@@ -544,7 +544,13 @@ public:
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
{
// TODO
this->SendSyntax(source);
source.Reply(" ");
source.Reply(_(
"Validates a previously requested vhost using DNS. If you own the domain you "
"have requested as a vhost you can validate your ownership of it using a DNS "
"TXT record to approve your own vhost."
));
return true;
}
};