blob: 040a4062ca67a0c347554fe4b68df60361530930 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= $theme->footer() ?>
<? if ($footer_text = module::get_var("gallery", "footer_text")): ?>
<?= $footer_text ?>
<? endif ?>
<? if (module::get_var("gallery", "show_credits")): ?>
<ul id="gCredits">
<?= $theme->credits() ?>
</ul>
<? endif ?>
|