2010-01-11 Raúl Mateos <raulofpandora@gmail.com>

* install.php: Updated build and year.
	* index.php: Enable developer mode. Updated year.
	* include/config_process.php: Updated build and year.

git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3734 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
raulmateos 2011-01-11 20:42:08 +00:00
parent 003d78d200
commit 1f43fcfcf1
4 changed files with 27 additions and 19 deletions

View File

@ -1,3 +1,11 @@
2010-01-11 Raúl Mateos <raulofpandora@gmail.com>
* install.php: Updated build and year.
* index.php: Enable developer mode. Updated year.
* include/config_process.php: Updated build and year.
2010-01-11 Javier Lanz <javier.lanz@artica.es> 2010-01-11 Javier Lanz <javier.lanz@artica.es>
*godmode/agentes/module_manager.php: Fixed an error truncating module name *godmode/agentes/module_manager.php: Fixed an error truncating module name

View File

@ -2,7 +2,7 @@
// Pandora FMS - http://pandorafms.com // Pandora FMS - http://pandorafms.com
// ================================================== // ==================================================
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas // Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list // Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or // This program is free software; you can redistribute it and/or
@ -22,8 +22,8 @@
/** /**
* Pandora build version and version * Pandora build version and version
*/ */
$build_version = 'PC101227'; $build_version = 'PC110111';
$pandora_version = 'v3.2'; $pandora_version = 'v4.0dev';
/* Help to debug problems. Override global PHP configuration */ /* Help to debug problems. Override global PHP configuration */
if (!isset($develop_bypass)) $develop_bypass = 0; if (!isset($develop_bypass)) $develop_bypass = 0;
@ -46,13 +46,13 @@ if ($develop_bypass != 1) {
else { else {
// Develop mode, show all notices and errors on Console (and log it) // Develop mode, show all notices and errors on Console (and log it)
if (version_compare(PHP_VERSION, '5.3.0') >= 0) if (version_compare(PHP_VERSION, '5.3.0') >= 0)
{ {
error_reporting(E_ALL & ~E_DEPRECATED); error_reporting(E_ALL & ~E_DEPRECATED);
} }
else else
{ {
error_reporting(E_ALL); error_reporting(E_ALL);
} }
ini_set("display_errors", 1); ini_set("display_errors", 1);
ini_set("error_log", $config["homedir"]."/pandora_console.log"); ini_set("error_log", $config["homedir"]."/pandora_console.log");
} }

View File

@ -2,7 +2,7 @@
//Pandora FMS- http://pandorafms.com //Pandora FMS- http://pandorafms.com
// ================================================== // ==================================================
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas // Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list // Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or // This program is free software; you can redistribute it and/or
@ -21,7 +21,7 @@ if (function_exists ('mb_internal_encoding')) {
// Set to 1 to do not check for installer or config file (for development!). // Set to 1 to do not check for installer or config file (for development!).
// Activate gives more error information, not useful for production sites // Activate gives more error information, not useful for production sites
$develop_bypass = 0; $develop_bypass = 1;
if ($develop_bypass != 1) { if ($develop_bypass != 1) {
// If no config file, automatically try to install // If no config file, automatically try to install

View File

@ -2,7 +2,7 @@
// Pandora FMS - http://pandorafms.com // Pandora FMS - http://pandorafms.com
// ================================================== // ==================================================
// Copyright (c) 2005-2010 Artica Soluciones Tecnologicas // Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// This program is free software; you can redistribute it and/or // This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License // modify it under the terms of the GNU General Public License
@ -33,8 +33,8 @@
<?php <?php
$version = "3.2-dev"; $version = "4.0-dev";
$build = "100924"; $build = "110111";
$banner = "v$version Build $build"; $banner = "v$version Build $build";
error_reporting(0); error_reporting(0);
@ -242,7 +242,7 @@ function install_step1() {
</div> </div>
</div> </div>
<div id='foot_install'> <div id='foot_install'>
<i>Pandora FMS is an OpenSource Software project registered at <i>Pandora FMS is an OpenSource Software project registered at
<a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i> <a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i>
</div> </div>
</div>"; </div>";
@ -280,7 +280,7 @@ function install_step1_licence() {
echo "</div> echo "</div>
<div style='clear: both;height: 1px;'><!-- --></div> <div style='clear: both;height: 1px;'><!-- --></div>
<div id='foot_install'> <div id='foot_install'>
<i>Pandora FMS is an OpenSource Software project registered at <i>Pandora FMS is an OpenSource Software project registered at
<a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i> <a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i>
</div> </div>
</div>"; </div>";
@ -338,7 +338,7 @@ function install_step2() {
<div style='clear: both;'><!-- --></div> <div style='clear: both;'><!-- --></div>
</div> </div>
<div id='foot_install'> <div id='foot_install'>
<i>Pandora FMS is an OpenSource Software project registered at <i>Pandora FMS is an OpenSource Software project registered at
<a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i> <a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i>
</div> </div>
</div>"; </div>";
@ -544,7 +544,7 @@ function install_step4() {
</div> </div>
</div> </div>
<div id='foot_install'> <div id='foot_install'>
<i>Pandora FMS is an Open Source Software project registered at <i>Pandora FMS is an Open Source Software project registered at
<a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i> <a target='_new' href='http://pandora.sourceforge.net'>SourceForge</a></i>
</div> </div>
</div>"; </div>";