diff options
| author | fisharebest <fisharebest@gmail.com> | 2010-12-15 16:42:49 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2010-12-15 16:42:49 +0000 |
| commit | 20e927f3f679148b66fbe4c68ecad284514845ac (patch) | |
| tree | c75a26381fe62394df5fb619faa15b0eeca7464c | |
| parent | b6d30e3011eed9a64f3dc114812b7fa2b01b602e (diff) | |
| download | webtrees-20e927f3f679148b66fbe4c68ecad284514845ac.tar.gz webtrees-20e927f3f679148b66fbe4c68ecad284514845ac.tar.bz2 webtrees-20e927f3f679148b66fbe4c68ecad284514845ac.zip | |
Fix: missing HTML entities. (Thanks to Jean-Louis Barbry)
| -rw-r--r-- | modules/stories/module.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/stories/module.php b/modules/stories/module.php index 1e0bb52ab7..68c3fae49c 100644 --- a/modules/stories/module.php +++ b/modules/stories/module.php @@ -66,7 +66,7 @@ class stories_WT_Module extends WT_Module implements WT_Module_Block, WT_Module_ // Implement WT_Module_Config public function getConfigLink() { - return 'module.php?mod='.$this->getName().'&mod_action=config'; + return 'module.php?mod='.$this->getName().'&mod_action=config'; } // Implement class WT_Module_Block @@ -127,7 +127,7 @@ class stories_WT_Module extends WT_Module implements WT_Module_Block, WT_Module_ } if (WT_USER_GEDCOM_ADMIN && !$html) { $html.='<div class="news_title center">'.$this->getTitle().'</div>'; - $html.='<div><a href="module.php?mod='.$this->getName().'&mod_action=edit&xref='.$this->controller->indi->getXref().'">'; + $html.='<div><a href="module.php?mod='.$this->getName().'&mod_action=edit&xref='.$this->controller->indi->getXref().'">'; $html.=i18n::translate('Add story').'</a>'.help_link('add_story', $this->getName()).'</div><br />'; } return $html; |
