This file is indexed.

/usr/share/horde/wicked/lib/Text_Wiki/Parse/Default/Heading2.php is in php-horde-wicked 2.0.7-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
<?php

require_once 'Text/Wiki/Parse/Default/Heading.php';

/**
 * Parsers class as a complement to the Header2 renderer.
 *
 * Works around broken Default Prefilter parser, adding additional spaces
 * inside headers.
 *
 * @package Wicked
 */
class Text_Wiki_Parse_Heading2 extends Text_Wiki_Parse_Heading
{
    public $regex = '/^(\+{1,6}) *(.*)/m';
}