diff options
| author | fisharebest <fisharebest@gmail.com> | 2011-06-19 16:23:30 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2011-06-19 16:23:30 +0000 |
| commit | 3448c13a0a8fa9f3fec0afed1f29ffe6d904505c (patch) | |
| tree | e9151a49cdb30e8167cee923fbb543b2fb518f94 /index_edit.php | |
| parent | f35cbde19980d3c07e22c5ef2e6071e9e48b106d (diff) | |
| download | webtrees-3448c13a0a8fa9f3fec0afed1f29ffe6d904505c.tar.gz webtrees-3448c13a0a8fa9f3fec0afed1f29ffe6d904505c.tar.bz2 webtrees-3448c13a0a8fa9f3fec0afed1f29ffe6d904505c.zip | |
Block configuration page - show the description of the block
Diffstat (limited to 'index_edit.php')
| -rw-r--r-- | index_edit.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/index_edit.php b/index_edit.php index 7d5bbe3598..c816a9cc16 100644 --- a/index_edit.php +++ b/index_edit.php @@ -139,14 +139,14 @@ if ($action=="configure") { } $class_name=$block_name.'_WT_Module'; $block=new $class_name; - echo "<table class=\"facts_table\" width=\"99%\">"; - echo "<tr><td class=\"facts_label\">"; - echo "<h2>".WT_I18N::translate('Configure')."</h2>"; - echo "</td></tr>"; - echo "<tr><td class=\"facts_label03\">"; - echo "<b>".$block->getTitle()."</b>"; - echo "</td></tr>"; - echo "</table>"; + echo '<table class="facts_table" width="99%">'; + echo '<tr><td class="facts_label">'; + echo '<h2>', WT_I18N::translate('Configure'), '</h2>'; + echo '</td></tr>'; + echo '<tr><td class="facts_label03">'; + echo '<b>', $block->getTitle(), ' - ', $block->getDescription(), '</b>'; + echo '</td></tr>'; + echo '</table>'; ?> <script type="text/javascript"> <!-- |
