This file is indexed.

/usr/share/horde/ansel/templates/faces/index.inc 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
21
<?php echo $tabs->render(Horde_Util::getGet('search_faces', 'all')); ?>
<h1 class="header">
<div style="float: right">
<form>
<input name="name" type="text" value="<?php echo $name ?>" />
<input type="image" name="submit" src="<?php echo Horde_Themes::img('search.png') ?>" />
</form>
</div>
<?php echo $title ?>
</h1>
<?php

if (empty($results)) {
    echo _("No faces found");
} else {
    foreach ($results as $face_id => $face) {
        echo '<a href="' . Ansel_Faces::getLink($face) . '" title="' . $face['face_name'] . '">'
                . '<img src="' . $faces->getFaceUrl($face['image_id'], $face_id, 'mini')
                . '" style="padding: 5px;" alt="' . htmlspecialchars($face['face_name']) . '" /></a>';
    }
}