diff --git a/code/model/Translatable.php b/code/model/Translatable.php index 5e644d4..19d75bb 100755 --- a/code/model/Translatable.php +++ b/code/model/Translatable.php @@ -1505,12 +1505,17 @@ class Translatable extends DataExtension implements PermissionProvider { function MetaTags(&$tags) { $template = '' . "\n"; $translations = $this->owner->getTranslations(); - if($translations) foreach($translations as $translation) { + if($translations) { + $translations = $translations->toArray(); + $translations[] = $this->owner; + + foreach($translations as $translation) { $tags .= sprintf($template, Convert::raw2xml($translation->Title), i18n::convert_rfc1766($translation->Locale), $translation->AbsoluteLink() - ); + ); + } } }