Index: trunk/kernel/include/category.php =================================================================== diff -u -N -r1022 -r1185 --- trunk/kernel/include/category.php (.../category.php) (revision 1022) +++ trunk/kernel/include/category.php (.../category.php) (revision 1185) @@ -1046,12 +1046,14 @@ $type = $objItemTypes->GetTypeByName($typestr); if(is_object($type)) { + $ForceUpdate = 1; $TypeId = $type->Get("ItemType"); $GroupOnly = $element->GetAttributeByName('_grouponly') ? 1 : 0; $txt = "Get("CategoryId")."\" _SubCats=\"1\" "; - $txt .=" _ListType=\"category\" _CountCurrent=\"1\" _ItemType=\"$TypeId\" _GroupOnly=\"$GroupOnly\" />"; + $txt .=" _ListType=\"category\" _CountCurrent=\"1\" _ForceUpdate=\"$ForceUpdate\" _ItemType=\"$TypeId\" _GroupOnly=\"$GroupOnly\" />"; $tag = new clsHtmlTag($txt); - $ret = $tag->Execute(); + $ret = $tag->Execute(); + //echo "Category parseobject: $ret
"; } else $ret = "";