This file is indexed.

/usr/share/php/kohana2/modules/gmaps/views/gmaps/info_window.php is in libkohana2-modules-php 2.3.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
<?php defined('SYSPATH') OR die('No direct access allowed.'); ?>
<div class="gmap-html">
<span class="image"><?php echo html::image(array('src' => $location->link, 'alt' => $location->title, 'width' => 100, 'height' => 100)) ?></span>
<h6 class="title"><?php echo $location->title ?></h6>
<?php

echo '<p>', implode("</p>\n<p>", explode("\n\n", $location->description)), "</p>\n";

?>
<p class="link"><?php echo html::anchor($location->link, $location->title) ?></p>
</div>