Skip to content
Snippets Groups Projects
Commit 27129ebb authored by Marius Burkard's avatar Marius Burkard
Browse files

- fixed typo from previous commit

parent 2fc23db2
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,7 @@ class letsencrypt {
$le_domain_count = count($temp_domains);
if($le_domain_count > 100) {
$temp_domains = array_splice($temp_domains, 0, 100);
$temp_domains = array_slice($temp_domains, 0, 100);
$app->log("There were " . $le_domain_count . " domains in the domain list. LE only supports 100, so we strip the rest.", LOGLEVEL_WARN);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment