This file is indexed.

/usr/share/horde/mnemo/templates/data/export.inc is in php-horde-mnemo 4.2.12-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
<h1 class="header"><?php echo _("Export Notes") ?></h1>

<form method="post" name="export" action="<?php echo $GLOBALS['registry']->downloadUrl(_("notes.csv")) ?>">
<input type="hidden" name="actionID" value="export" />

<div class="horde-content">
  <?php echo Horde::label('exportID', _("Select the export format:")) ?><br />
  <select id="exportID" name="exportID">
   <option value="<?php echo Horde_Data::EXPORT_CSV ?>">CSV</option>
  </select>
</div>

<div class="horde-form-buttons">
  <input type="submit" value="<?php echo _("Export") ?>" class="horde-default" />
</div>

</form>