modification de dir_local afin de prendre en compte des suffixe du genre /../../chemin
see #738.
This commit is contained in:
parent
39985f4de4
commit
a462fdbc45
|
@ -384,8 +384,8 @@ function duration_list($name, $selected=0) {
|
||||||
* @access private
|
* @access private
|
||||||
*/
|
*/
|
||||||
function dir_local($file) {
|
function dir_local($file) {
|
||||||
//recherche la chaine commençant aprés ../ ou /
|
//recherche la chaine commençant aprés ../ ou / ceci n fois
|
||||||
preg_match('`^(/|../)(.*)`',$file,$res);
|
preg_match('`^(/|../)*(.*)`',$file,$res);
|
||||||
echo $file."<br/>";
|
echo $file."<br/>";
|
||||||
print_r($res);
|
print_r($res);
|
||||||
echo "<br/>";
|
echo "<br/>";
|
||||||
|
|
Loading…
Reference in New Issue