mirror of https://github.com/itflow-org/itflow
Added php-xml as a requirement
This commit is contained in:
parent
523da0dea0
commit
da561b296e
|
|
@ -4,6 +4,9 @@ This file documents all notable changes made to ITFlow.
|
||||||
|
|
||||||
## [25.12] Stable Release
|
## [25.12] Stable Release
|
||||||
|
|
||||||
|
### Breaking Changes ###
|
||||||
|
- Existing installs php-xml extension needs to be installed for document creation and editing.
|
||||||
|
|
||||||
### Major Changes
|
### Major Changes
|
||||||
- Consolidated "Files" and "Documents" into a single section called **Files**.
|
- Consolidated "Files" and "Documents" into a single section called **Files**.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,7 @@ $extensions = [
|
||||||
'php-mbstring' => 'mbstring',
|
'php-mbstring' => 'mbstring',
|
||||||
'php-gd' => 'gd',
|
'php-gd' => 'gd',
|
||||||
'php-zip' => 'zip',
|
'php-zip' => 'zip',
|
||||||
|
'php-xml' => 'xml',
|
||||||
];
|
];
|
||||||
|
|
||||||
foreach ($extensions as $name => $ext) {
|
foreach ($extensions as $name => $ext) {
|
||||||
|
|
@ -765,4 +766,3 @@ $mysqli->close();
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
require_once "../includes/footer.php";
|
require_once "../includes/footer.php";
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -821,6 +821,7 @@ if (isset($_POST['add_telemetry'])) {
|
||||||
'php-curl' => 'curl',
|
'php-curl' => 'curl',
|
||||||
'php-mbstring' => 'mbstring',
|
'php-mbstring' => 'mbstring',
|
||||||
'php-gd' => 'gd',
|
'php-gd' => 'gd',
|
||||||
|
'php-xml' => 'xml',
|
||||||
];
|
];
|
||||||
|
|
||||||
foreach ($extensions as $name => $ext) {
|
foreach ($extensions as $name => $ext) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue