Normalize formatting/line endings across configs, controllers, models, tests, and OpenAPI specs. Update rule expression/rule engine implementation and remove obsolete RuleAction controller/model. Add unit tests for rule expression syntax and multi-action behavior, and include docs updates.
26 lines
525 B
PHP
26 lines
525 B
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="robots" content="noindex">
|
|
|
|
<title><?= lang('Errors.whoops') ?></title>
|
|
|
|
<style>
|
|
<?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container text-center">
|
|
|
|
<h1 class="headline"><?= lang('Errors.whoops') ?></h1>
|
|
|
|
<p class="lead"><?= lang('Errors.weHitASnag') ?></p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|