diff options
| author | fisharebest <fisharebest@gmail.com> | 2013-07-25 07:03:03 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2013-07-25 07:03:03 +0000 |
| commit | bcdb0c623303e81e9f3bd888bdd5feb76ca7083f (patch) | |
| tree | a567b256a86d18204e45881633f53a54f114b5fb /library/WT/Controller | |
| parent | 8576bae96f81acabc046809a4a9eb5acce1e1eeb (diff) | |
| download | webtrees-bcdb0c623303e81e9f3bd888bdd5feb76ca7083f.tar.gz webtrees-bcdb0c623303e81e9f3bd888bdd5feb76ca7083f.tar.bz2 webtrees-bcdb0c623303e81e9f3bd888bdd5feb76ca7083f.zip | |
Fix (some) bugs in the GEDfact assistant media-links manager
Diffstat (limited to 'library/WT/Controller')
| -rw-r--r-- | library/WT/Controller/Individual.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/WT/Controller/Individual.php b/library/WT/Controller/Individual.php index fccbe8e45f..ef55f320e1 100644 --- a/library/WT/Controller/Individual.php +++ b/library/WT/Controller/Individual.php @@ -157,8 +157,8 @@ class WT_Controller_Individual extends WT_Controller_GedcomRecord { } } if ($this->record->canEdit() && !$event->isOld()) { - echo "<div class=\"deletelink\"><a class=\"font9 deleteicon\" href=\"#\" onclick=\"return delete_fact('".WT_I18N::translate('Are you sure you want to delete this fact?')."', '".$this->record->getXref()."', '".$event->getFactId()."');\" title=\"".WT_I18N::translate('Delete name')."\"><span class=\"link_text\">".WT_I18N::translate('Delete name')."</span></a></div>"; - echo "<div class=\"editlink\"><a href=\"#\" class=\"font9 editicon\" onclick=\"edit_name('".$this->record->getXref()."', '".$event->getFactId()."'); return false;\" title=\"".WT_I18N::translate('Edit name')."\"><span class=\"link_text\">".WT_I18N::translate('Edit name')."</span></a></div>"; + echo "<div class=\"deletelink\"><a class=\"deleteicon\" href=\"#\" onclick=\"return delete_fact('".WT_I18N::translate('Are you sure you want to delete this fact?')."', '".$this->record->getXref()."', '".$event->getFactId()."');\" title=\"".WT_I18N::translate('Delete name')."\"><span class=\"link_text\">".WT_I18N::translate('Delete name')."</span></a></div>"; + echo "<div class=\"editlink\"><a href=\"#\" class=\"editicon\" onclick=\"edit_name('".$this->record->getXref()."', '".$event->getFactId()."'); return false;\" title=\"".WT_I18N::translate('Edit name')."\"><span class=\"link_text\">".WT_I18N::translate('Edit name')."</span></a></div>"; } echo '</dd>'; echo '</dl>'; |
