diff --git a/ecrire/inc/utils.php b/ecrire/inc/utils.php index 990bfdb3cc2fb374a6ab068899242795c92a051c..1530b2d7bbea276d9ce12fbc3ba2db2f492eb63d 100644 --- a/ecrire/inc/utils.php +++ b/ecrire/inc/utils.php @@ -713,6 +713,9 @@ function url_de_base() { # note : HTTP_HOST contient le :port si necessaire $myself = $http.'://'.$_SERVER['HTTP_HOST'].$REQUEST_URI; + # supprimer la chaine de GET + $myself = preg_replace(',\?.*$,','', $myself); + # supprimer n sous-repertoires $supprime_preg = '/+'; for ($i=0; $i<$GLOBALS['profondeur_url']; $i++)