This file is indexed.

/usr/share/horde/ansel/templates/widgets/links.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
17
18
19
20
<?php echo $this->render('begin'); ?>
<div class="ansel-widgetlink">
  <?php echo $this->contentTag(
    'a',
    Horde::img('feed.png') . ' ' . ($this->owner ? sprintf(_("Recent photos by %s"), $this->owner) : _("Recent system photos")),
    array('href' => $this->userfeedurl ));
  ?>
</div>
<div class="ansel-widgetlink">
  <?php echo $this->contentTag(
      'a',
      Horde::img('feed.png') . ' ' . sprintf(_("Recent photos in %s"), $this->h($this->galleryname)),
      array('href' => $this->galleryfeedurl));
  ?>
</div>
<div class="ansel-widgetlink ansel-embedlink">
  <?php echo Horde::img('embed.png') . ' ' . _("Embed on external blog") ?><br>
  <textarea readonly="readonly"><?php echo $this->embed ?></textarea>
</div>
<?php echo $this->render('end'); ?>