This file is indexed.

/usr/share/horde/whups/templates/view/savedqueries.inc is in php-horde-whups 3.0.0~beta1-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
<?php if ($header): ?>
<h1 class="header">
 <?php echo htmlspecialchars($this->_params['title']); ?>
</h1>
<?php endif; ?>
<table class="horde-table" width="100%">
<?php foreach ($this->_params['results'] as $id => $result): ?>
 <tr><td><?php echo Horde::link(Whups::urlFor('query', empty($result['slug']) ? array('id' => $id) : array('slug' => $result['slug']))) . htmlspecialchars($result['name']) ?></a></td></tr>
<?php endforeach; ?>
</table>