// parse description block
$parse_description = false;
if (!$use_tabs) {
$t->sparse("title_desc", false);
}
if ($full_description) {
if ($php_in_full_desc) {
eval_php_code($full_description);
}
$t->set_var("full_description", $full_description);
$t->parse("description", false);
$parse_description = true;
} else {
$t->set_var("description", "");
}
if (strlen($notes)) {
if ($php_in_notes) {
eval_php_code($notes);
}
$t->set_var("notes", $notes);
$t->parse("notes_block", false);
$parse_description = true;
}
if (!$hide_weight_details && $weight > 0) {
if (strpos ($weight, ".") !== false) {
while (substr($weight, strlen($weight) - 1) == "0") {
$weight = substr($weight, 0, strlen($weight) - 1);
}
}
if (substr($weight, strlen($weight) - 1) == ".") {
$weight = substr($weight, 0, strlen($weight) - 1);
}
$t->set_var("weight", $weight . " " . $weight_measure);
$t->sparse("weight_block", false);
$parse_description = true;
}
if ($parse_description) {
$tabs["desc"] = PROD_DESCRIPTION_MSG;
}
// end description block
Социальные закладки