diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-08 19:11:12 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-08 19:11:12 +0000 |
commit | a8713a769533913004a2ac7cdf65ed60dbb80a7d (patch) | |
tree | 3984c58237b90287313cc79cd367d43af798417a /modules/info | |
parent | e8d989ff9ae049a93f1ad700d7f6416a8dfe5207 (diff) |
Allow in-place editing in the info block.
Diffstat (limited to 'modules/info')
-rw-r--r-- | modules/info/views/info_block.html.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/info/views/info_block.html.php b/modules/info/views/info_block.html.php index 3fa9350f..6ef5c372 100644 --- a/modules/info/views/info_block.html.php +++ b/modules/info/views/info_block.html.php @@ -3,15 +3,15 @@ <tbody> <tr> <th><?= _("Title:") ?></th> - <td><?= $item->title; ?></td> + <td><?= $item->title_edit; ?></td> </tr> <tr> <th><?= _("Description:") ?></th> - <td><?= $item->description; ?></td> + <td><?= $item->description_edit; ?></td> </tr> <tr> <th><?= _("Name:") ?></th> - <td><?= $item->name; ?></td> + <td><?= $item->name_edit; ?></td> </tr> <? if ($item->owner): ?> <tr> |