2009-12-08 Raul Mateos <raulofpandora@gmail.com>
* include/auth/*.php: added style to error when accessing the files directly. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2177 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
2abceb1c30
commit
55199847b5
|
@ -1,3 +1,8 @@
|
||||||
|
2009-12-08 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
|
* include/auth/*.php: added style to error when accessing the files
|
||||||
|
directly.
|
||||||
|
|
||||||
2009-12-08 Miguel de Dios <miguel.dedios@artica.es>
|
2009-12-08 Miguel de Dios <miguel.dedios@artica.es>
|
||||||
|
|
||||||
* operation/agentes/networkmap.php: fix style for to clean form in
|
* operation/agentes/networkmap.php: fix style for to clean form in
|
||||||
|
@ -25,11 +30,11 @@
|
||||||
* include/functions_agents.php, operation/agentes/tactical.php: fix notice
|
* include/functions_agents.php, operation/agentes/tactical.php: fix notice
|
||||||
undefined var message.
|
undefined var message.
|
||||||
|
|
||||||
2009-12-07 Pablo de la Concepcipón <pablo.concepcion@artica.es>
|
2009-12-07 Pablo de la Concepcipón <pablo.concepcion@artica.es>
|
||||||
* Changelog: Changelog with the last changes that I forgot to include in
|
* Changelog: Changelog with the last changes that I forgot to include in
|
||||||
the last commit.
|
the last commit.
|
||||||
|
|
||||||
2009-12-07 Pablo de la Concepcipón <pablo.concepcion@artica.es>
|
2009-12-07 Pablo de la Concepcipón <pablo.concepcion@artica.es>
|
||||||
* include/functions_api.php, include/functions.php,
|
* include/functions_api.php, include/functions.php,
|
||||||
extensions/plugin_registration.php, operation/events/events.php,
|
extensions/plugin_registration.php, operation/events/events.php,
|
||||||
operation/agentes/exportdata.php, operation/agentes/stat_win.php,
|
operation/agentes/exportdata.php, operation/agentes/stat_win.php,
|
||||||
|
@ -67,20 +72,20 @@
|
||||||
* operation/agentes/estado_monitores.php: Names and description
|
* operation/agentes/estado_monitores.php: Names and description
|
||||||
was cutted and not shown as popup description. Fixed.
|
was cutted and not shown as popup description. Fixed.
|
||||||
|
|
||||||
2009-12-05 Raul Mateos <raulofpandora@gmail.com>
|
2009-12-05 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
* install.php: Modified description for XML_RPC.
|
* install.php: Modified description for XML_RPC.
|
||||||
|
|
||||||
* extensions/pdate_manager/lib/libupdate_manager_client.php:
|
* extensions/pdate_manager/lib/libupdate_manager_client.php:
|
||||||
Format error page if XML_PRC not found.
|
Format error page if XML_PRC not found.
|
||||||
|
|
||||||
2009-12-05 Raul Mateos <raulofpandora@gmail.com>
|
2009-12-05 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
* images/pandora.png, pandora_logo.jpg: Deleted old files.
|
* images/pandora.png, pandora_logo.jpg: Deleted old files.
|
||||||
|
|
||||||
* images/image_problem: Change background with new logo.
|
* images/image_problem: Change background with new logo.
|
||||||
|
|
||||||
2009-12-04 Raul Mateos <raulofpandora@gmail.com>
|
2009-12-04 Raul Mateos <raulofpandora@gmail.com>
|
||||||
|
|
||||||
* include/config_process.php: Solved notice when PHP < 5.3
|
* include/config_process.php: Solved notice when PHP < 5.3
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,39 @@
|
||||||
|
|
||||||
|
|
||||||
if (!isset ($config)) {
|
if (!isset ($config)) {
|
||||||
die ('You cannot access this file directly!');
|
die ('
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Pandora FMS - The Flexible Monitoring System - Console error</title>
|
||||||
|
<meta http-equiv="expires" content="0">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf8">
|
||||||
|
<meta name="resource-type" content="document">
|
||||||
|
<meta name="distribution" content="global">
|
||||||
|
<meta name="author" content="Sancho Lerena">
|
||||||
|
<meta name="copyright" content="This is GPL software. Created by Sancho Lerena and others">
|
||||||
|
<meta name="keywords" content="pandora, monitoring, system, GPL, software">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<link rel="icon" href="../../images/pandora.ico" type="image/ico">
|
||||||
|
<link rel="stylesheet" href="../styles/pandora.css" type="text/css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="main" style="float:left; margin-left: 100px">
|
||||||
|
<div align="center">
|
||||||
|
<div id="login_f">
|
||||||
|
<h1 id="log_f" class="error">You cannot access this file</h1>
|
||||||
|
<div>
|
||||||
|
<img src="../../images/pandora_logo.png" border="0"></a>
|
||||||
|
</div>
|
||||||
|
<div class="msg">
|
||||||
|
<span class="error"><b>ERROR:</b>
|
||||||
|
You can\'t access this file directly!</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
');
|
||||||
}
|
}
|
||||||
|
|
||||||
$config["user_can_update_password"] = false;
|
$config["user_can_update_password"] = false;
|
||||||
|
|
|
@ -19,7 +19,39 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!isset ($config)) {
|
if (!isset ($config)) {
|
||||||
die ('You cannot access this file directly!');
|
die ('
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Pandora FMS - The Flexible Monitoring System - Console error</title>
|
||||||
|
<meta http-equiv="expires" content="0">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf8">
|
||||||
|
<meta name="resource-type" content="document">
|
||||||
|
<meta name="distribution" content="global">
|
||||||
|
<meta name="author" content="Sancho Lerena">
|
||||||
|
<meta name="copyright" content="This is GPL software. Created by Sancho Lerena and others">
|
||||||
|
<meta name="keywords" content="pandora, monitoring, system, GPL, software">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<link rel="icon" href="../../images/pandora.ico" type="image/ico">
|
||||||
|
<link rel="stylesheet" href="../styles/pandora.css" type="text/css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="main" style="float:left; margin-left: 100px">
|
||||||
|
<div align="center">
|
||||||
|
<div id="login_f">
|
||||||
|
<h1 id="log_f" class="error">You cannot access this file</h1>
|
||||||
|
<div>
|
||||||
|
<img src="../../images/pandora_logo.png" border="0"></a>
|
||||||
|
</div>
|
||||||
|
<div class="msg">
|
||||||
|
<span class="error"><b>ERROR:</b>
|
||||||
|
You can\'t access this file directly!</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
');
|
||||||
}
|
}
|
||||||
|
|
||||||
$config["user_can_update_info"] = false;
|
$config["user_can_update_info"] = false;
|
||||||
|
|
|
@ -19,7 +19,39 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!isset ($config)) {
|
if (!isset ($config)) {
|
||||||
die ('You cannot access this file directly!');
|
die ('
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Pandora FMS - The Flexible Monitoring System - Console error</title>
|
||||||
|
<meta http-equiv="expires" content="0">
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf8">
|
||||||
|
<meta name="resource-type" content="document">
|
||||||
|
<meta name="distribution" content="global">
|
||||||
|
<meta name="author" content="Sancho Lerena">
|
||||||
|
<meta name="copyright" content="This is GPL software. Created by Sancho Lerena and others">
|
||||||
|
<meta name="keywords" content="pandora, monitoring, system, GPL, software">
|
||||||
|
<meta name="robots" content="index, follow">
|
||||||
|
<link rel="icon" href="../../images/pandora.ico" type="image/ico">
|
||||||
|
<link rel="stylesheet" href="../styles/pandora.css" type="text/css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="main" style="float:left; margin-left: 100px">
|
||||||
|
<div align="center">
|
||||||
|
<div id="login_f">
|
||||||
|
<h1 id="log_f" class="error">You cannot access this file</h1>
|
||||||
|
<div>
|
||||||
|
<img src="../../images/pandora_logo.png" border="0"></a>
|
||||||
|
</div>
|
||||||
|
<div class="msg">
|
||||||
|
<span class="error"><b>ERROR:</b>
|
||||||
|
You can\'t access this file directly!</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
');
|
||||||
}
|
}
|
||||||
|
|
||||||
$config["user_can_update_info"] = true;
|
$config["user_can_update_info"] = true;
|
||||||
|
|
Loading…
Reference in New Issue