|
@@ -9,9 +9,6 @@ func (this *FERData) MetaTitle() string {
|
|
|
if this.wrap.CurrModule == "index" {
|
|
|
return this.dataRow.(*utils.MySql_page).A_meta_title
|
|
|
}
|
|
|
- } else if this.is404 {
|
|
|
- // Return it from settings
|
|
|
- return "Page not found"
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
@@ -21,9 +18,6 @@ func (this *FERData) MetaKeywords() string {
|
|
|
if this.wrap.CurrModule == "index" {
|
|
|
return this.dataRow.(*utils.MySql_page).A_meta_keywords
|
|
|
}
|
|
|
- } else if this.is404 {
|
|
|
- // Return it from settings
|
|
|
- return ""
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
@@ -33,9 +27,6 @@ func (this *FERData) MetaDescription() string {
|
|
|
if this.wrap.CurrModule == "index" {
|
|
|
return this.dataRow.(*utils.MySql_page).A_meta_description
|
|
|
}
|
|
|
- } else if this.is404 {
|
|
|
- // Return it from settings
|
|
|
- return ""
|
|
|
}
|
|
|
return ""
|
|
|
}
|