This file is indexed.

/usr/share/horde/turba/templates/list/numPager.inc is in php-horde-turba 4.2.12-1ubuntu1.

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
<div class="turbaPager">
 <div class="leftFloat">
  <strong><?php echo _("Contacts displayed:") ?></strong>
<?php
if ($numDisplayed) {
    echo '[' . sprintf(_("%s to %s of %s"), $start, $end, $numitem) . ']';
} else {
    echo _("None");
}
echo '</div>';
if (isset($pager)) {
    echo $pager->render();
}
?>
 <div class="clear"></div>
</div>