This file is indexed.

/usr/share/php/kohana3.2/modules/userguide/views/userguide/menu.php is in libkohana3.2-mod-userguide-php 3.2.2-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
<h2>Modules</h2>

<?php if( ! empty($modules)): ?>

	<ul>
	<?php foreach($modules as $url => $options): ?>
	
		<li><?php echo html::anchor(Route::get('docs/guide')->uri(array('module' => $url)), $options['name'], NULL, NULL, TRUE) ?></li>
	
	<?php endforeach; ?>
	</ul>

<?php else: ?>

	<p class="error">No modules.</p>

<?php endif; ?>