removing the checkdir function (useless)

This commit is contained in:
Benjamin Sonntag 2006-08-28 14:41:42 +00:00
parent e2cf5f71b2
commit 87872a25a7
1 changed files with 0 additions and 17 deletions

View File

@ -376,22 +376,5 @@ function duration_list($name, $selected=0) {
return $res;
}
/* ----------------------------------------------------------------- */
/** Remet un chemin en position locale
* retire ../ ou / au besoin
* @file string chemin du repertoire ou du fichier
* @return string chemin du repertoir en position local
* @access private
*/
function dir_local($file) {
//recherche la chaine commençant aprés ../ ou / ceci n fois
preg_match('`^(/|../)*(.*)`',$file,$res);
if ($res) {
return $res[2];
} else {
return $file;
}
}
?>