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,16 +18,16 @@
*/
/**
\file htdocs/html.formadmin.class.php
\brief File of class for html functions for admin pages
\version $Id$
*/
* \file htdocs/html.formadmin.class.php
* \brief File of class for html functions for admin pages
* \version $Id$
*/
/**
\class FormAdmin
\brief Class to generate html code for admin pages
*/
* \class FormAdmin
* \brief Class to generate html code for admin pages
*/
class FormAdmin
{
var $db;
@ -35,9 +35,9 @@ class FormAdmin
/**
\brief Constructeur
\param DB handler d'acces base de donnee
*/
* \brief Constructor
* \param DB handler d'acces base de donnee
*/
function FormAdmin($DB)
{
$this->db = $DB;

View File

@ -106,7 +106,7 @@ function check_user_password_dolibarr($usertotest,$passwordtotest)
}
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);
$langs->load('main');
$langs->load('other');
@ -115,7 +115,7 @@ function check_user_password_dolibarr($usertotest,$passwordtotest)
}
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);
$_SESSION["dol_loginmesg"]=$db->lasterror();
}

View File

@ -20,9 +20,10 @@
*/
/** \file htdocs/install/inc.php
\brief File that define environment for install pages
\version $Id$
*/
* \ingroup core
* \brief File that define environment for install pages
* \version $Id$
*/
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
* \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
* \version $Id$
*/