Skip to content

Commit 9dc5d7f

Browse files
author
Stephane
committed
BUG Mauvais chemin vers le dossier des articles sur l'écran: Administration > Configuration avancée
1 parent fc88bbb commit 9dc5d7f

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

changelog.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
version 0.7.3 (25/10/2016)
1+
version 0.7.4 (09/11/2016)
2+
BUG Mauvais chemin vers le dossier des articles sur l'écran: Administration > Configuration avancée
3+
4+
version 0.7.3 (25/10/2016)
25
Mise à jour traduction occitane (contribution Quent-in)
36
BUG Non prise en compte de langue dans les liens Voir les pages statiques à partir de l'administration
47

infos.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<document>
33
<title><![CDATA[MultiLingue]]></title>
44
<author><![CDATA[Stephane F.]]></author>
5-
<version>0.7.3</version>
6-
<date>25/10/2016</date>
5+
<version>0.7.4</version>
6+
<date>09/11/2016</date>
77
<site>http://pluxopolis.net</site>
88
<description><![CDATA[Gestion multilingue de PluXml]]></description>
99
<requirements></requirements>

plxMyMultiLingue.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,6 @@ public function ConstructLoadPlugins() {
318318

319319
# modification des chemins d'accès
320320
echo '<?php
321-
322321
$this->aConf["default_lang"] ="'.$this->lang.'";
323322
$this->aConf["racine_articles"] = $this->aConf["racine_articles"]."'.$this->lang.'/";
324323
$this->aConf["racine_statiques"] = $this->aConf["racine_statiques"]."'.$this->lang.'/";
@@ -342,6 +341,7 @@ public function ConstructLoadPlugins() {
342341
if($this->getParam('lang_medias_folder')) {
343342
echo '<?php $this->aConf["medias"] = $this->aConf["medias"]."'.$this->lang.'/"; ?>';
344343
}
344+
345345
}
346346

347347
public function plxMotorGetStatiques() {
@@ -540,8 +540,10 @@ public function AdminFootEndBody() {
540540

541541
echo '<?php
542542
$output = ob_get_clean();
543-
$output = preg_replace("/(article[a-z0-9-]+\/)/", "'.$this->lang.'/$1", $output);
544-
$output = preg_replace("/(static[a-z0-9-]+\/)/", "'.$this->lang.'/$1", $output);
543+
if (!preg_match("/parametres/",basename($_SERVER["SCRIPT_NAME"]))) {
544+
$output = preg_replace("/(article[a-z0-9-]+\/)/", "'.$this->lang.'/$1", $output);
545+
$output = preg_replace("/(static[a-z0-9-]+\/)/", "'.$this->lang.'/$1", $output);
546+
}
545547
echo $output;
546548
?>';
547549

0 commit comments

Comments
 (0)