Fix: Bad path on fedora

This commit is contained in:
Laurent Destailleur 2011-08-04 13:58:14 +00:00
parent 7a477158e2
commit 5fd13bc232

View File

@ -22,7 +22,7 @@
/**
* \file htdocs/lib/databases/mysqli.lib.php
* \brief Class file to manage Dolibarr database access for a Mysql database
* \version $Id: mysqli.lib.php,v 1.113 2011/07/31 23:26:03 eldy Exp $
* \version $Id: mysqli.lib.php,v 1.114 2011/08/04 13:58:14 eldy Exp $
*/
// For compatibility during upgrade
@ -1155,8 +1155,8 @@ class DoliDb
}
/**
* \brief Return full path of dump program
* \return string Full path of dump program
* Return full path of dump program
* @return string Full path of dump program
*/
function getPathOfDump()
{
@ -1167,14 +1167,14 @@ class DoliDb
{
$liste=$this->fetch_array($resql);
$basedir=$liste['Value'];
$fullpathofdump=$basedir.'bin/mysqldump';
$fullpathofdump=$basedir.(preg_match('/\/$/',$basedir)?'':'/').'bin/mysqldump';
}
return $fullpathofdump;
}
/**
* \brief Return full path of restore program
* \return string Full path of restore program
* Return full path of restore program
* @return string Full path of restore program
*/
function getPathOfRestore()
{