1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 14:03:15 +02:00

Remove webpanel:ssl configuration option because its dumb

This commit is contained in:
Adam
2013-08-23 01:14:00 -04:00
parent 154fa25e8f
commit 4d1492d444
10 changed files with 17 additions and 19 deletions
-2
View File
@@ -9,7 +9,6 @@
Module *me;
Anope::string provider_name, template_name, template_base, page_title;
bool use_ssl = false;
class ModuleWebCPanel : public Module
{
@@ -59,7 +58,6 @@ class ModuleWebCPanel : public Module
template_name = block->Get<const Anope::string>("template", "default");
template_base = Anope::DataDir + "/modules/webcpanel/templates/" + template_name;
page_title = block->Get<const Anope::string>("title", "Anope IRC Services");
use_ssl = block->Get<bool>("ssl", "no"); // This is dumb, is there a better way to do this?
provider = ServiceReference<HTTPProvider>("HTTPProvider", provider_name);
if (!provider)