engelsystem/includes/pages/guest_credits.php

9 lines
169 B
PHP
Raw Normal View History

2011-06-02 00:48:29 +02:00
<?php
2013-11-25 21:56:56 +01:00
function credits_title() {
return _("Credits");
}
2011-06-02 00:48:29 +02:00
function guest_credits() {
2017-01-01 05:49:02 +01:00
return template_render(__DIR__ . '/../../templates/guest_credits.html', []);
2011-06-02 00:48:29 +02:00
}
?>