2
0
forked from Wavyzz/dolibarr

Fix: Bad path on fedora

This commit is contained in:
Laurent Destailleur
2011-08-04 13:58:14 +00:00
parent 83144b97f8
commit 5199f67d3c
2 changed files with 10 additions and 10 deletions

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()
{