This file is indexed.

/usr/share/horde/nag/templates/javascript_defs.php is in php-horde-nag 4.2.7-1ubuntu1.

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
<?php

/* Variables used in core javascript files. */
$code['conf'] = array(
    'URI_AJAX' => (string)$GLOBALS['registry']->getServiceLink('ajax', 'nag'),
    'date_format' => str_replace(array('%e', '%d', '%a', '%A', '%m', '%h', '%b', '%B', '%y', '%Y'),
                                 array('d', 'dd', 'ddd', 'dddd', 'MM', 'MMM', 'MMM', 'MMMM', 'yy', 'yyyy'),
                                 Horde_Nls::getLangInfo(D_FMT)),
    'tasklist_info_url' => (string)Horde::url('tasklists/info.php'),
    'time_format' => $GLOBALS['prefs']->getValue('twentyFour') ? 'HH:mm' : 'hh:mm tt',
);

/* Gettext strings used in core javascript files. */
$code['text'] = array(
    'close' => _("Close"),
);

$GLOBALS['page_output']->addInlineJsVars(array(
    'var Nag' => $code
), array('top' => true));