Added php-xml as a requirement

This commit is contained in:
johnnyq 2025-12-06 13:38:40 -05:00
parent 523da0dea0
commit da561b296e
3 changed files with 8 additions and 4 deletions

View File

@ -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**.

View File

@ -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) {
@ -682,7 +683,7 @@ $mysqli->close();
</tbody> </tbody>
</table> </table>
</div> </div>
<!-- Database Structure Comparison Table --> <!-- Database Structure Comparison Table -->
<h3 class="mt-3">Database Structure Comparison</h3> <h3 class="mt-3">Database Structure Comparison</h3>
@ -765,4 +766,3 @@ $mysqli->close();
<?php <?php
require_once "../includes/footer.php"; require_once "../includes/footer.php";

View File

@ -808,7 +808,7 @@ if (isset($_POST['add_telemetry'])) {
$_SESSION['alert_message'] = ''; $_SESSION['alert_message'] = '';
} }
?> ?>
<?php if (isset($_GET['checks'])) { <?php if (isset($_GET['checks'])) {
$checks = []; $checks = [];
@ -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) {
@ -1107,7 +1108,7 @@ if (isset($_POST['add_telemetry'])) {
<?php endforeach; ?> <?php endforeach; ?>
</tbody> </tbody>
</table> </table>
<hr> <hr>
<a href="?database" class="btn btn-primary text-bold">Next (Database)<i class="fa fa-fw fa-arrow-circle-right ml-2"></i></a> <a href="?database" class="btn btn-primary text-bold">Next (Database)<i class="fa fa-fw fa-arrow-circle-right ml-2"></i></a>