diff --git a/doc/dev/README b/doc/dev/README index 91d201a7c14..510d6d8b33c 100644 --- a/doc/dev/README +++ b/doc/dev/README @@ -27,6 +27,7 @@ This is all steps required to build a release od Dolibarr x.x: * Update the ChangeLog file. * Check that file build/tgz/tar.exclude excludes all non expected files. * Run script build/dolibarr_mysql2pgsql.pl and commit/add new files. +* Update and commit file htdocs/master.inc.php to include new version constant. * Update and commit file doc/dev/dolibarr-doxygen.conf to include new version constants. * Update and commit file build/makepack-dolibarr.pl to include new version constants. * Check all CVS commits are done. diff --git a/htdocs/main.inc.php b/htdocs/main.inc.php index 1a852064905..262df3f276a 100644 --- a/htdocs/main.inc.php +++ b/htdocs/main.inc.php @@ -611,7 +611,7 @@ if ($user->statut < 1) } -dolibarr_syslog("Access to ".$_SERVER["PHP_SELF"]); +dolibarr_syslog("Access to ".$_SERVER["PHP_SELF"],LOG_INFO); if (! defined('MAIN_INFO_SOCIETE_PAYS')) diff --git a/htdocs/master.inc.php b/htdocs/master.inc.php index 7659d793dc4..7be37f8c4fb 100644 --- a/htdocs/master.inc.php +++ b/htdocs/master.inc.php @@ -23,7 +23,6 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ - * $Source$ */ /** @@ -32,7 +31,7 @@ \version $Revision$ */ -define('DOL_VERSION','2.2-dev'); +define('DOL_VERSION','2.2-beta2'); define('EURO',chr(128)); // La fonction clearstatcache ne doit pas etre appelée de manière globale car ralenti.