diff --git a/core/model/SiteTree.php b/core/model/SiteTree.php
index f9448a5ed..428596183 100644
--- a/core/model/SiteTree.php
+++ b/core/model/SiteTree.php
@@ -362,12 +362,12 @@ class SiteTree extends DataObject {
/**
* Return the title, description and keywords metatags.
- * @param boolean $includeTitle Show default
-tag, set to false for custom templating
+ * @param boolean|string $includeTitle Show default -tag, set to false for custom templating
* @return string The XHTML metatags
*/
public function MetaTags($includeTitle = true) {
$tags = "";
- if($includeTitle == true) {
+ if($includeTitle == true || $includeTitle == 'true') {
$tags .= "" . Convert::raw2xml($this->MetaTitle ? $this->MetaTitle : $this->Title) . "\n";
}
$tags .= "\n";