diff options
| author | David Drury <david@drury.me.uk> | 2013-10-23 20:31:04 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2013-10-23 21:21:22 +0100 |
| commit | ec7f9dc39a83d98a11d0f310fe7f540fe25bfdd1 (patch) | |
| tree | 5e3d600e06d1e00bfdb668de1c406fd913c74403 /modules_v3 | |
| parent | 67e0bbdd128da83a4f13b9d853a35a9fee2f8074 (diff) | |
| download | webtrees-ec7f9dc39a83d98a11d0f310fe7f540fe25bfdd1.tar.gz webtrees-ec7f9dc39a83d98a11d0f310fe7f540fe25bfdd1.tar.bz2 webtrees-ec7f9dc39a83d98a11d0f310fe7f540fe25bfdd1.zip | |
Removed redundant <p> around form and replaced with css
Diffstat (limited to 'modules_v3')
| -rw-r--r-- | modules_v3/stories/module.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules_v3/stories/module.php b/modules_v3/stories/module.php index da8805aea6..5308af7f43 100644 --- a/modules_v3/stories/module.php +++ b/modules_v3/stories/module.php @@ -327,13 +327,13 @@ class stories_WT_Module extends WT_Module implements WT_Module_Block, WT_Module_ )->execute(array($this->getName(), WT_GED_ID))->fetchAll(); echo - '<form method="get" action="', WT_SCRIPT_NAME ,'"><p>', + '<form method="get" action="', WT_SCRIPT_NAME ,'">', WT_I18N::translate('Family tree'), ' ', '<input type="hidden" name="mod" value="', $this->getName(), '">', '<input type="hidden" name="mod_action" value="admin_config">', select_edit_control('ged', WT_Tree::getNameList(), null, WT_GEDCOM), '<input type="submit" value="', WT_I18N::translate('show'), '">', - '</p></form>'; + '</form>'; echo '<h3><a href="module.php?mod=', $this->getName(), '&mod_action=admin_edit">', WT_I18N::translate('Add story'), '</a></h3>'; if (count($stories)>0) { |
