Is there any reason not to enable them by default? >From documentation: Short tags are available by default but can be disabled either via the short_open_tag php.ini configuration file directive, or are disabled by default if PHP is built with the --disable-short-tags configuration.
Signed-off-by: Artur Wiebe <[email protected]> --- rules/php8.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/php8.make b/rules/php8.make index 212a1c382..131cd567a 100644 --- a/rules/php8.make +++ b/rules/php8.make @@ -77,7 +77,7 @@ PHP8_CONF_OPT := \ --without-config-file-scan-dir \ --disable-sigchild \ --disable-libgcc \ - --disable-short-tags \ + --enable-short-tags \ --disable-dmalloc \ --$(call ptx/endis, PTXCONF_GLOBAL_IPV6)-ipv6 \ --disable-dtrace \ -- 2.39.1
