Index: trunk/kernel/parser.php =================================================================== diff -u -r1290 -r1343 --- trunk/kernel/parser.php (.../parser.php) (revision 1290) +++ trunk/kernel/parser.php (.../parser.php) (revision 1343) @@ -2906,8 +2906,7 @@ } /* - @description: Returns the MetaKeywords field for a category, or the system MetaKeywords value - if the category doesn't have a value for MetaKeywords + @description: Returns the MetaKeywords field for a category, or the system MetaKeywords value if the category doesn't have a value for MetaKeywords @attrib: _CatId:int: Category to use (The current category is used by default) */ function m_meta_keywords($attribs = array()) @@ -2925,14 +2924,13 @@ } if(!strlen($keywords)) { - $keywords = $objConfig->Get("MetaKeywords"); + $keywords = $objConfig->Get("Category_MetaKey"); } return $keywords; } /* - @description: Returns the MetaDescription field for a category, or the system MetaDescription value - if the category doesn't have a value for MetaDescription + @description: Returns the MetaDescription field for a category, or the system MetaDescription value if the category doesn't have a value for MetaDescription @attrib: _CatId:int: Category to use (The current category is used by default) */ function m_meta_description($attribs = array()) @@ -2951,7 +2949,7 @@ } if(!strlen($desc)) { - $desc = $objConfig->Get("MetaDescription"); + $desc = $objConfig->Get("Category_MetaDesc"); } return $desc; }