This file is indexed.

/usr/share/horde/sesha/templates/view/list.php is in php-horde-sesha 1.0.0~beta1-11ubuntu1.

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
<div class="header">
 <span class="smallheader" style="float:right">
  <?php echo $this->count ?>
 </span>
 <?php echo $this->header ?>
</div>
<div id="category-select">
<form action="" method="get" name="stockcategoriesmenu">
 <?php echo Horde_Util::formInput() ?>
 <select name="category_id" onchange="document.stockcategoriesmenu.submit()">
  <option value=""><?php echo _("Show Category:"); ?></option>
<?php foreach ($this->allCategories() as $category): ?>
  <option value="<?php echo $category->category_id ?>"<?php if (in_array($category->category_id, $this->selectedCategories)) echo ' selected="selected"' ?>><?php echo $category->category ?></option>
<?php endforeach ?>
 </select>
</form>
</div>

<table id="stock" class="stock sortable striped" cellspacing="0">
<thead>
 <tr class="item leftAlign">
  <th width="1%" class="nosort">&nbsp;</th>
<?php foreach ($this->columnHeaders as $header): ?>
  <th id="<?php echo $header['id'] ?>" <?php echo $header['class'] ?> <?php echo $header['width'] ?>><?php echo $header['link'] ?></th>
<?php endforeach ?>
 </tr>
</thead>
<tbody>
<?php foreach ($this->shownStock as $item): ?>
 <tr>
<?php foreach ($item['columns'] as $column): ?>
  <td <?php echo $column['class'] ?>><?php echo $column['column'] ?></td>
<?php endforeach ?>
 </tr>
<?php endforeach ?>
</tbody>
</table>