xref: /webtrees/resources/views/errors/database-error.phtml (revision 7c2c99fad7cacd17c98be88238ff735d82c6351b)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5/**
6 * @var string $error
7 */
8
9?>
10
11<p>
12    <?= I18N::translate('An unexpected database error occurred.') ?>
13</p>
14
15<pre>
16    <?= e($error) ?>
17</pre>
18
19<p>
20    <?= I18N::translate('The webtrees developers would be very interested to learn about this error. If you contact them, they will help you resolve the problem.') ?>
21</p>
22