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;

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);