From 6203ae64bad0eaed6d7fc4e420dfa9ca1ca59854 Mon Sep 17 00:00:00 2001 From: Matt Smith <49497847+mattxtaz@users.noreply.github.com> Date: Thu, 6 Mar 2025 15:44:41 +0000 Subject: [PATCH] Remove the word "either" (#1938) This is likely there because there are two different paths depending on if the module was loaded as a network or a user module. But only one of them is printed here so either does not make any sense. --- modules/cert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cert.cpp b/modules/cert.cpp index 2bfdf907..67484665 100644 --- a/modules/cert.cpp +++ b/modules/cert.cpp @@ -41,7 +41,7 @@ class CCertMod : public CModule { "You do not have a certificate. Please use the web interface " "to add a certificate")); if (GetUser()->IsAdmin()) { - PutModule(t_f("Alternatively you can either place one at {1}")( + PutModule(t_f("Alternatively you can place one at {1}")( PemFile())); } }