Renomage de fonction dans util.php (utilisée nulle par ailleurs actuellement)

This commit is contained in:
Georges Dupéron 2010-06-23 18:54:50 +02:00
parent d4f40c19df
commit cdf7a1090f

View File

@ -3,7 +3,7 @@
// Fonctions utilitaires.
// Concatène deux chemins.
function concat_path($p1, $p2) {
function concaténer_chemin($p1, $p2) {
return $p1 . '/' . $p2; // FIXME : . '/' . n'est pas portable !
}