This file is indexed.

/usr/share/php/data/Horde_Lock/migration/3_horde_lock_fix_owner_width.php is in php-horde-lock 2.1.4-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
/**
 * Fixes column width of lock_owner (Bug #10608).
 */
class HordeLockFixOwnerWidth extends Horde_Db_Migration_Base
{
    public function up()
    {
        $this->changeColumn('horde_locks', 'lock_owner', 'string', array('limit' => 255, 'null' => false));
    }

    public function down()
    {
        $this->changeColumn('horde_locks', 'lock_owner', 'string', array('limit' => 32, 'null' => false));
    }
}