Skip to content

Commit 27129eb

Browse files
author
Marius Burkard
committed
- fixed typo from previous commit
1 parent 2fc23db commit 27129eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/lib/classes/letsencrypt.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public function request_certificates($data, $server_type = 'apache') {
252252

253253
$le_domain_count = count($temp_domains);
254254
if($le_domain_count > 100) {
255-
$temp_domains = array_splice($temp_domains, 0, 100);
255+
$temp_domains = array_slice($temp_domains, 0, 100);
256256
$app->log("There were " . $le_domain_count . " domains in the domain list. LE only supports 100, so we strip the rest.", LOGLEVEL_WARN);
257257
}
258258

0 commit comments

Comments
 (0)