diff --git a/www/pages/greffes.php b/www/pages/greffes.php
index 43654f6c3..0fe3fc0b9 100644
--- a/www/pages/greffes.php
+++ b/www/pages/greffes.php
@@ -625,9 +625,13 @@ else
$tagContent = '';
if(preg_match('/\bACTES\b/i', $_SESSION['tabInfo']['droits'])){
- print $tag.' href="'.$href.'" title="'.$title.'">'.$tagContent.'';
+ echo $tag.' href="'.$href.'" title="'.$title.'">'.$tagContent.'';
}else{
- print $tag.' href="#" title="Vous n\'avez pas les droits nécessaires pour visualiser le document correspondant.">'.$tagContent.'';
+ echo $tag.' href="#" title="Vous n\'avez pas les droits nécessaires pour visualiser le document correspondant.">'.$tagContent.'';
+ }
+ if(hasModeEdition())
+ {
+ echo '
Créer une commande factice.';
}
}
else
@@ -638,13 +642,13 @@ else
$tagContent = '';
if(preg_match('/\bACTES\b/i', $_SESSION['tabInfo']['droits'])){
- print $tag.' href="'.$href.'" title="'.$title.'">'.$tagContent.'';
+ echo $tag.' href="'.$href.'" title="'.$title.'">'.$tagContent.'';
}else{
- print $tag.' href="#" title="Vous n\'avez pas les droits nécessaires pour commander le document correspondant.">'.$tagContent.'';
+ echo $tag.' href="#" title="Vous n\'avez pas les droits nécessaires pour commander le document correspondant.">'.$tagContent.'';
}
if(hasModeEdition())
{
- echo '
Créer une commande courrier factice.';
+ echo '
Créer une commande factice.';
}
}