Install Joomla 4 and open a view having a TinyMCE editor
No errors, all works fine
error 0: Undefined constant "GLOB_BRACE"
The line 477 of the file tinymce.php uses the 'GLOB_BRACE' flag:
foreach (glob(JPATH_ROOT . $template_path . '/*.{html,txt}', GLOB_BRACE) as $filepath)
but: The GLOB_BRACE flag is not available on some non GNU systems, like Solaris or Alpine Linux.
see: https://www.php.net/manual/en/function.glob.php
That one should be removed
Labels |
Added:
No Code Attached Yet
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2021-09-22 10:35:51 |
Closed_By | ⇒ | richard67 |
The use of that flag had been introduced with PR #33130 . Am working on a fix.