This file is indexed.

/usr/share/horde/whups/templates/view/results.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
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<script type="text/javascript">
function table_sortCallback(tableId, column, sortDown)
{
    HordeCore.doAction('setPrefValue', { pref: 'sortby', value: 'column' }); 
    HordeCore.doAction('setPrefValue', { pref: 'sortdir', value: 'sortDown' }); 
}
</script>

<div class="header nowrap">
  <span class="nowrap rightAlign rightFloat subscribe"><?php echo isset($this->_params['extra']) ? $this->_params['extra'] : '&nbsp;' ?></span>
  <?php echo $this->_params['title'] . ' (' . count($this->_params['results']) . ')' ?>
</div>

<?php if (count($this->_params['results'])): ?>
<br class="spacer" />
<table class="horde-table tickets sortable" id="sresults_<?php echo $this->_id ?>" width="100%">
<?php
     echo '<thead><tr class="nowrap">';
     foreach ($this->_params['values'] as $name => $value) {
         if ($value == 'user_id_requester') {
             $value = 'requester_formatted';
         }
         if ($sortby == $value) {
             $class = ' class="' . $sortdirclass . '"';
             $revurl = Horde::url($this->_params['url'])->add('sortdir', ($sortdir ? 0 : 1));
             $sortlink = Horde::link($revurl, sprintf(_("Sort by %s"), $name), 'sortlink') . $name . '</a> ';
         } else {
             $class = '';
             $url = Horde::url($this->_params['url'])->add('sortby', $value);
             $sortlink = Horde::link($url, sprintf(_("Sort by %s"), $name), 'sortlink') . $name . '</a> ';
         }

         echo '<th id="' . $value . '"' . $class . '>' . $sortlink . '</th>';
     }
     echo '</tr></thead><tbody>';

     foreach ($this->_params['results'] as $info) {
         echo '<tr>';

         $url = Whups::urlFor('ticket', $info['id']);

         foreach ($this->_params['values'] as $name => $value) {
             $thevalue = Whups::formatColumn($info, $value);
             $sortval = '';
             if ($value == 'timestamp' || $value == 'due' ||
                 substr($value, 0, 5) == 'date_') {
                 $sortval = (strlen($thevalue) ? ' sortval="' . $thevalue . '"' : '');
             }

             echo '<td' . $sortval . '>' . (strlen($thevalue) ? $thevalue : '&nbsp;') . '</td>';
         }

         echo '</tr>';
     }
?>
</tbody>
</table>
<?php if ($GLOBALS['registry']->getAuth()): ?>
<div class="horde-form-buttons">
  <form action="<?php echo $registry->downloadUrl('report.html') ?>" method="post" name="datagen">
    <?php Horde_Util::pformInput() ?>
    <input type="hidden" name="ids" value="<?php echo implode(',', $ids) ?>" />
    <input type="hidden" name="actionID" value="report" />
    <?php echo _("Download these results as: ") ?>
    <select name="template">
      <?php foreach (Whups::listTemplates('searchresults') as $name => $label): ?>
        <option value="<?php echo $name ?>"><?php echo htmlspecialchars($label) ?></option>
      <?php endforeach; ?>
    </select>
    <input type="submit" class="horde-default" value="<?php echo _("Save") ?>" />
  </form>
</div>
<?php endif; endif; ?>