File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 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)
2
5
Mise à jour traduction occitane (contribution Quent-in)
3
6
BUG Non prise en compte de langue dans les liens Voir les pages statiques à partir de l'administration
4
7
Original file line number Diff line number Diff line change 2
2
<document >
3
3
<title ><![CDATA[ MultiLingue]]> </title >
4
4
<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 >
7
7
<site >http://pluxopolis.net</site >
8
8
<description ><![CDATA[ Gestion multilingue de PluXml]]> </description >
9
9
<requirements ></requirements >
Original file line number Diff line number Diff line change @@ -318,7 +318,6 @@ public function ConstructLoadPlugins() {
318
318
319
319
# modification des chemins d'accès
320
320
echo '<?php
321
-
322
321
$this->aConf["default_lang"] =" ' .$ this ->lang .'";
323
322
$this->aConf["racine_articles"] = $this->aConf["racine_articles"]." ' .$ this ->lang .'/";
324
323
$this->aConf["racine_statiques"] = $this->aConf["racine_statiques"]." ' .$ this ->lang .'/";
@@ -342,6 +341,7 @@ public function ConstructLoadPlugins() {
342
341
if ($ this ->getParam ('lang_medias_folder ' )) {
343
342
echo '<?php $this->aConf["medias"] = $this->aConf["medias"]." ' .$ this ->lang .'/"; ?> ' ;
344
343
}
344
+
345
345
}
346
346
347
347
public function plxMotorGetStatiques () {
@@ -540,8 +540,10 @@ public function AdminFootEndBody() {
540
540
541
541
echo '<?php
542
542
$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
+ }
545
547
echo $output;
546
548
?> ' ;
547
549
You can’t perform that action at this time.
0 commit comments