This file is indexed.

/usr/share/horde/ansel/templates/tile/gallery.html.php is in php-horde-ansel 3.0.5+debian0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
<!-- Gallery Tile -->
<div class="gallery-tile">
 <?php echo $this->contentTag('a', $this->tag('img', array('alt' => '[image]', 'src' => $this->gallery_image)), array('href' => $this->view_link)) ?>
 <div class="gallery-tile-caption"><?php echo $this->contentTag('a', $this->h($this->gallery->get('name')), array('href' => $this->view_link)) ?> (<?php echo $this->gallery_count ?>)</div>
 <div class="gallery-tile-stats">
   <?php if (!empty($this->properties_link)): ?>
     <?php echo $this->contentTag('a', _("Gallery Properties"), array('href' => $this->properties_link))?><br>
   <?php endif; ?>
   <?php echo _("Created") . ': ' . strftime($this->date_format, $this->gallery->get('date_created')) ?><br>
   <?php echo _("Modified") . ': ' . strftime($this->date_format, $this->gallery->get('last_modified')) ?><br>
   <?php if (!empty($owner_link)): ?>
     <?php echo _("Owner") . ': ' . $this->contentTag('a', $this->h($this->owner_string), array('href' => $this->owner_link)) ?><br>
   <?php endif; ?>
 </div>
</div>
<!-- End Gallery Tile -->