View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0001743 | Anope Stable (2.0.x series) | General | public | 2020-11-05 13:38 | 2020-11-05 13:38 |
Reporter | ivp | Assigned To | |||
Priority | normal | Severity | feature | Reproducibility | have not tried |
Status | new | Resolution | open | ||
Summary | 0001743: Allow services admins to group nicknames when m_sql_authentication is used | ||||
Description | Currently when external authentication is used, nobody can group nicknames. Services administrators should be allowed to do that (in combination with maxaliases set to 1 to disable it for regular users). Patch file is attached. | ||||
Tags | No tags attached. | ||||
|
m_sql_authentication.patch.txt (575 bytes)
--- old/modules/extra/m_sql_authentication.cpp 2019-03-31 04:13:04.000000000 +0200 +++ new/modules/extra/m_sql_authentication.cpp 2020-11-05 11:25:05.454577129 +0100 @@ -101,7 +103,7 @@ EventReturn OnPreCommand(CommandSource &source, Command *command, std::vector<Anope::string> ¶ms) anope_override { - if (!this->disable_reason.empty() && (command->name == "nickserv/register" || command->name == "nickserv/group")) + if (!this->disable_reason.empty() && (command->name == "nickserv/register")) { source.Reply(this->disable_reason); return EVENT_STOP; |