diff --git a/changelog.txt b/changelog.txt index 361b2b1..bbd0740 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,7 @@ -version 0.7.3 (25/10/2016) +version 0.7.4 (09/11/2016) +BUG Mauvais chemin vers le dossier des articles sur l'écran: Administration > Configuration avancée + +version 0.7.3 (25/10/2016) Mise à jour traduction occitane (contribution Quent-in) BUG Non prise en compte de langue dans les liens Voir les pages statiques à partir de l'administration diff --git a/infos.xml b/infos.xml index 20c71ef..96c8b33 100755 --- a/infos.xml +++ b/infos.xml @@ -2,8 +2,8 @@ <![CDATA[MultiLingue]]> - 0.7.3 - 25/10/2016 + 0.7.4 + 09/11/2016 http://pluxopolis.net diff --git a/plxMyMultiLingue.php b/plxMyMultiLingue.php index 23c74c7..1a34bf5 100755 --- a/plxMyMultiLingue.php +++ b/plxMyMultiLingue.php @@ -318,7 +318,6 @@ public function ConstructLoadPlugins() { # modification des chemins d'accès echo 'aConf["default_lang"] ="'.$this->lang.'"; $this->aConf["racine_articles"] = $this->aConf["racine_articles"]."'.$this->lang.'/"; $this->aConf["racine_statiques"] = $this->aConf["racine_statiques"]."'.$this->lang.'/"; @@ -342,6 +341,7 @@ public function ConstructLoadPlugins() { if($this->getParam('lang_medias_folder')) { echo 'aConf["medias"] = $this->aConf["medias"]."'.$this->lang.'/"; ?>'; } + } public function plxMotorGetStatiques() { @@ -540,8 +540,10 @@ public function AdminFootEndBody() { echo 'lang.'/$1", $output); - $output = preg_replace("/(static[a-z0-9-]+\/)/", "'.$this->lang.'/$1", $output); + if (!preg_match("/parametres/",basename($_SERVER["SCRIPT_NAME"]))) { + $output = preg_replace("/(article[a-z0-9-]+\/)/", "'.$this->lang.'/$1", $output); + $output = preg_replace("/(static[a-z0-9-]+\/)/", "'.$this->lang.'/$1", $output); + } echo $output; ?>';