This file is indexed.

/usr/share/horde/wicked/templates/display/RecentChanges.html.php is in php-horde-wicked 2.0.7-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
<br />
<table class="horde-table" width="100%">
<?php foreach ($this->changes as $change): ?>
 <thead>
  <tr>
   <th colspan="4"><?php echo $change['date'] ?></th>
  </tr>
 </thead>
 <tbody>
<?php foreach ($change['pages'] as $page): ?>
  <tr>
   <td class="nowrap" width="20%"><a href="<?php echo $page['url'] ?>"><?php echo $page['name'] ?></a></td>
   <td class="nowrap" width="5%"><a href="<?php echo $page['version_url'] ?>" title="<?php echo $page['version_alt'] ?>"><?php echo $page['version'] ?></a> <a href="<?php echo $page['diff_url'] ?>" title="<?php echo $page['diff_alt'] ?>"><?php echo $page['diff_img'] ?></a></td>
   <td class="nowrap" width="15%"><?php echo $page['author'] ?></td>
   <td width="58%"><?php echo $page['change_log'] ?></td>
  </tr>
<?php endforeach ?>
 </tbody>
<?php endforeach ?>
</table>