From 7a1f8f9342e5a8b9cdcf562bc94dfed45296f954 Mon Sep 17 00:00:00 2001 From: s3lph Date: Tue, 7 Feb 2023 22:05:18 +0100 Subject: [PATCH] fix(php): fix typo in php.ini --- roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 b/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 index 266aeae..da0aa92 100644 --- a/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 +++ b/roles/php/templates/etc/php/conf.d/99-nextcloud.ini.j2 @@ -2,7 +2,7 @@ {% for name, section in php_ini.items() %} [name] -{% endfor %}{% for key, value in section.items() %} +{% for key, value in section.items() %} {{ key }}={{ value }} {% endfor %}