This file is indexed.

/usr/share/horde/ingo/templates/flist/select.html.php is in php-horde-ingo 3.2.8-1ubuntu1.

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
<?php
    $o = $this->optionTag('', _("Select target folder:")) .
         $this->optionTag(null, '- - - - - - - - - -', false, array('disabled' => true));

    if ($this->create) {
        $o .= $this->optionTag('', _("Create new folder"), false, array('class' => 'flistCreate')) .
              $this->optionTag(null, '- - - - - - - - - -', false, array('disabled' => true));
    }

    foreach ($this->mboxes as $v) {
        $o .= $this->optionTag($v['ob'], $this->escape(str_repeat(' ', $v['level'] * 2) . $v['label']), $v['ob'] == $this->val);
    }

    echo $this->selectTag($this->tagname, $o, array('class' => 'flistSelect'));