This commit is contained in:
Laurent Destailleur 2009-11-04 22:23:48 +00:00
parent 5b8e8628cc
commit 42968c3a6d
4 changed files with 17 additions and 16 deletions

View File

@ -18,15 +18,15 @@
*/ */
/** /**
\file htdocs/html.formadmin.class.php * \file htdocs/html.formadmin.class.php
\brief File of class for html functions for admin pages * \brief File of class for html functions for admin pages
\version $Id$ * \version $Id$
*/ */
/** /**
\class FormAdmin * \class FormAdmin
\brief Class to generate html code for admin pages * \brief Class to generate html code for admin pages
*/ */
class FormAdmin class FormAdmin
{ {
@ -35,8 +35,8 @@ class FormAdmin
/** /**
\brief Constructeur * \brief Constructor
\param DB handler d'acces base de donnee * \param DB handler d'acces base de donnee
*/ */
function FormAdmin($DB) function FormAdmin($DB)
{ {

View File

@ -106,7 +106,7 @@ function check_user_password_dolibarr($usertotest,$passwordtotest)
} }
else else
{ {
dol_syslog("functions_dolibarr::check_user_password_dolibarr Authentification ko user not found pour '".$_POST["username"]."'"); dol_syslog("functions_dolibarr::check_user_password_dolibarr Authentification ko user not found for '".$_POST["username"]."'");
sleep(1); sleep(1);
$langs->load('main'); $langs->load('main');
$langs->load('other'); $langs->load('other');
@ -115,7 +115,7 @@ function check_user_password_dolibarr($usertotest,$passwordtotest)
} }
else else
{ {
dol_syslog("functions_dolibarr::check_user_password_dolibarr Authentification ko db error pour '".$_POST["username"]."' error=".$db->lasterror()); dol_syslog("functions_dolibarr::check_user_password_dolibarr Authentification ko db error for '".$_POST["username"]."' error=".$db->lasterror());
sleep(1); sleep(1);
$_SESSION["dol_loginmesg"]=$db->lasterror(); $_SESSION["dol_loginmesg"]=$db->lasterror();
} }

View File

@ -20,8 +20,9 @@
*/ */
/** \file htdocs/install/inc.php /** \file htdocs/install/inc.php
\brief File that define environment for install pages * \ingroup core
\version $Id$ * \brief File that define environment for install pages
* \version $Id$
*/ */
define('DOL_VERSION','2.7.0-beta'); // Also defined in htdocs/master.inc.php define('DOL_VERSION','2.7.0-beta'); // Also defined in htdocs/master.inc.php

View File

@ -20,7 +20,7 @@
/** /**
* \file htdocs/install/index.php * \file htdocs/install/index.php
* \ingroup install * \ingroup install
* \brief Affichage page selectin langue si premiere install. * \brief Affichage page selection langue si premiere install.
* Si reinstall, passe directement a la page check.php * Si reinstall, passe directement a la page check.php
* \version $Id$ * \version $Id$
*/ */