kamila 74
| Posté : 02-12-2008 11:36
Bonjour,
:=) Une solution donnée par Tito qui offre l'avantage de ne pas nécessiter de meta-mot dans chaque article: http://www.npds.org/viewtopic.php?topic=22667&forum=7&ancre=1&start=0#722667181487
mais a refaire après chaque patch inpactant le fichier
Fichier article.php
vers la ligne 48
if ($bodytext == "") {
$bodytext = meta_lang("$hometext<br /><br />$notes");
} else {
$bodytext = meta_lang("$hometext<br /><br />$bodytext<br /><br />$notes");
}
if ($informant == "") {$informant = $anonymous;}
A remplacer par:
if ($bodytext == "") {
$bodytext = meta_lang("$hometext<br /><br />$notes");
} else {
if(secur_static("member")) {
$bodytext = meta_lang("$hometext<br /><br />$bodytext<br /><br />$notes");
} else {
$bodytext = meta_lang("$hometext<br /><br />Pour lire la suite de cet article, vous devez <a href=\"user.php\">être connecté en tant que membre</a><br /><br />$notes");
}
Pas testé sur Evolution mais il n'y a pas de raison ...
@+ |