This file is indexed.

/usr/share/horde/wicked/lib/Text_Wiki/Parse/Default/Wickedblock.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
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
<?php
/**
 * This parser parses Wicked blocks, which add Horde_Blocks to the
 * page.  Basic syntax is [[block block-app/block-name block-args]].
 *
 * @package Wicked
 */
class Text_Wiki_Parse_Wickedblock extends Text_Wiki_Parse
{
    /**
     * The regular expression used to find blocks.
     *
     * @access public
     *
     * @var string
     */
    public $regex = "/\[\[block (.*)?\/(.*)? (.*)?\]\]/sU";

    /**
     * Generates a token entry for the matched text. Token options are:
     *
     * 'src'  => The image source, typically a relative path name.
     * 'opts' => Any macro options following the source.
     *
     * @access public
     *
     * @param array &$matches  The array of matches from parse().
     *
     * @return  A delimited token number to be used as a placeholder in
     *          the source text.
     */
    public function process(&$matches)
    {
        $args = array();
        foreach (explode(' ', $matches[3], 2) as $pair) {
            @list($arg, $value) = explode('=', $pair);
            $args[$arg] = $value;
        }
        return $this->wiki->addToken(
            $this->rule,
            array('app' => $matches[1],
                  'block' => $matches[2],
                  'args' => $args));
    }
}