diff --git a/bl-kernel/admin/views/content.php b/bl-kernel/admin/views/content.php
index 575dbac7..22189c1f 100644
--- a/bl-kernel/admin/views/content.php
+++ b/bl-kernel/admin/views/content.php
@@ -125,7 +125,9 @@ function table($type) {
}
echo '
'.PHP_EOL;
+ if ($type=='published' || $type=='static' || $type=='sticky') {
echo ''.$L->g('View').''.PHP_EOL;
+ }
echo ''.$L->g('Edit').''.PHP_EOL;
echo ''.$L->g('Delete').''.PHP_EOL;
echo ' | ';
@@ -160,7 +162,9 @@ function table($type) {
}
echo ''.PHP_EOL;
+ if ($type=='published' || $type=='static' || $type=='sticky') {
echo ''.$L->g('View').''.PHP_EOL;
+ }
echo ''.$L->g('Edit').''.PHP_EOL;
if (count($page->children())==0) {
echo ''.$L->g('Delete').''.PHP_EOL;
|