diff options
Diffstat (limited to 'modules/info')
-rw-r--r-- | modules/info/views/info_block.html.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modules/info/views/info_block.html.php b/modules/info/views/info_block.html.php index 6ef5c372..05228ec1 100644 --- a/modules/info/views/info_block.html.php +++ b/modules/info/views/info_block.html.php @@ -3,16 +3,18 @@ <tbody> <tr> <th><?= _("Title:") ?></th> - <td><?= $item->title_edit; ?></td> + <td><?= $item->title; ?></td> </tr> <tr> <th><?= _("Description:") ?></th> - <td><?= $item->description_edit; ?></td> + <td><?= $item->description; ?></td> </tr> + <? if ($item->id != 1): ?> <tr> <th><?= _("Name:") ?></th> - <td><?= $item->name_edit; ?></td> + <td><?= $item->name; ?></td> </tr> + <? endif ?> <? if ($item->owner): ?> <tr> <th><?= _("Owner:") ?></th> |