mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-07-08 08:28:36 -04:00
1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure)
11 lines
541 B
PHP
11 lines
541 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<ul id="gViewMenu" class="sf-menu">
|
|
<li><a href="#" id="gFullsizeLink" title="<?= _("View full size image") ?>"><?= _("View full size image") ?></a></li>
|
|
<li><a href="#" id="gAlbumLink" title="<?= _("View album") ?>"><?= _("Album view") ?></a></li>
|
|
<li><a href="#" id="gHybridLink" title="<?= _("View album in hybrid mode") ?>"><?= _("Hybrid view") ?></a></li>
|
|
<li><?= $theme->sidebar_top() ?></li>
|
|
</ul>
|
|
|
|
<?= $theme->sidebar_blocks() ?>
|
|
<?= $theme->sidebar_bottom() ?>
|