Subversion Repositories vnag

Rev

Rev 84 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 84 Rev 87
Line 3... Line 3...
3
/*
3
/*
4
 * VNag - Nagios Framework for PHP
4
 * VNag - Nagios Framework for PHP
5
 * Developed by Daniel Marschall, ViaThinkSoft <www.viathinksoft.com>
5
 * Developed by Daniel Marschall, ViaThinkSoft <www.viathinksoft.com>
6
 * Licensed under the terms of the Apache 2.0 license
6
 * Licensed under the terms of the Apache 2.0 license
7
 *
7
 *
8
 * Revision 2018-07-19
8
 * Revision 2023-10-29
9
 */
9
 */
10
 
10
 
11
// This file (index.php) is intended to be called by your browser.
11
// This file (index.php) is intended to be called by your browser.
12
// If you want to access via Nagios/Icinga or CLI, call "bin/ipfm.phar" instead.
12
// If you want to access via Nagios/Icinga or CLI, call "bin/ipfm.phar" instead.
13
 
13
 
Line 27... Line 27...
27
 
27
 
28
<html>
28
<html>
29
 
29
 
30
<head>
30
<head>
31
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
31
        <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
32
        <meta http-equiv="refresh" content="300; URL=<?php echo isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : ''; ?>">
32
        <meta http-equiv="refresh" content="300; URL=<?php echo htmlentities($_SERVER['REQUEST_URI'] ?? 'index.php'); ?>">
33
        <title>Traffic monitor</title>
33
        <title>Traffic monitor</title>
34
        <?php if (USE_DYGRAPH) { ?>
34
        <?php if (USE_DYGRAPH) { ?>
35
        <!--[if IE]>
35
        <!--[if IE]>
36
                <script type="text/javascript" src="dygraph/excanvas.js"></script>
36
                <script type="text/javascript" src="dygraph/excanvas.js"></script>
37
        <![endif]-->
37
        <![endif]-->