Skip to content

Commit

Permalink
FIX: Add ODBC Data Source Name
Browse files Browse the repository at this point in the history
 - only show for relevant KB versions - #19
  • Loading branch information
aljawaid committed Sep 15, 2023
1 parent 4fe9934 commit fc0ad5a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Template/config/support.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,11 @@
<?php if (DB_DRIVER === 'odbc'): ?>
<span class="data-wrap">
<li class="db-info-title"><?= t('ODBC Data Source Name') ?></li>
<li class="db-info-value value-path border-bottom-thick privacy"><?= DB_ODBC_DSN ?></li>
<?php if (APP_VERSION >= '1.2.25'): ?>
<li class="db-info-value value-path border-bottom-thick privacy"><?= DB_ODBC_DSN ?></li>
<?php else: ?>
<li class="db-info-value border-bottom-thick not-available"><?= t('Not available in this version') ?></li>
<?php endif ?>
</span>
<?php endif ?>
</ul>
Expand Down

0 comments on commit fc0ad5a

Please sign in to comment.