Skip to content

Commit

Permalink
admin: gestion erreur 500 page config
Browse files Browse the repository at this point in the history
  • Loading branch information
gpoma committed Dec 13, 2024
1 parent f533530 commit a868b38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/admin_setup.html.php
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@
<tbody>
<tr>
<th class="align-top col-3">PDF_STORAGE_PATH</th>
<?php $storage_path_exists = $PDF_STORAGE_PATH && is_dir($PDF_STORAGE_PATH);?>
<td class="text-muted col-3"><?php if ($PDF_STORAGE_PATH) { echo $PDF_STORAGE_PATH; } ?></td>
<?php $storage_path_exists = isset($PDF_STORAGE_PATH) && is_dir($PDF_STORAGE_PATH);?>
<td class="text-muted col-3"><?php echo isset($PDF_STORAGE_PATH) ? $PDF_STORAGE_PATH : null ?></td>
<td class="col-6">
<?php if ($storage_path_exists): ?>
<i class="bi bi-check-square text-success"></i>
Expand Down

0 comments on commit a868b38

Please sign in to comment.