behavior_id == 2) { header("Location: $SITE_URL/$SYSTEM->category_script_name?sale=1"); exit; } else if ($SYSTEM->behavior_id == 3) { header("Location: $SITE_URL/$SYSTEM->category_script_name?new=1"); exit; } else if ($SYSTEM->behavior_id == 4) { header("Location: $SITE_URL/$SYSTEM->category_script_name?all=1"); exit; } $content_links = content_links('tbl_content', 'content_id', 'title', ''); $content_id = 1; // home page content ID $content = get_record('tbl_content', 'content_id', $content_id); if ($content->show_title == 1) { $title = '
' . $content->title . '
'; } if ($content->page_title) { $page_title = $content->page_title; } else if ($content->title) { $page_title = $content->title; } if ($content->meta_keywords) { $meta_keywords = $content->meta_keywords; } else { $meta_keywords = $META_KEYWORDS; } if ($content->meta_description) { $meta_description = $content->meta_description; } else { $meta_description = $META_DESCRIPTION; } // display the template include $_SERVER['DOCUMENT_ROOT'] . "/template/" . $SITE_THEME . "/index.php"; ?>