This file is indexed.

/usr/share/php/kohana2/modules/gmaps/models/location.php is in libkohana2-modules-php 2.3.4-2.

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
<?php defined('SYSPATH') OR die('No direct access allowed.');

/*

CREATE TABLE `locations` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `created` int(10) unsigned NOT NULL,
  `title` varchar(32) NOT NULL,
  `description` varchar(127) NOT NULL,
  `link` varchar(127) NOT NULL,
  `lon` float(10,6) NOT NULL,
  `lat` float(10,6) NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `uniq_ll` (`lon`,`lat`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;

*/

class Location_Model extends ORM {

	// Exciting!

} // End Location Model