|
i add category_parent into the select in conifg.php
$the_cats = $db->get_results("select category_parent, category_id, category_name, category_safe_name, category_lang from ".table_categories.";");
modify the admin_category.php to:
$the_cats = $db->get_results("select category_parent, category_id, category__auto_id, lft, rgt, category_name, category_safe_name, category_lang, category_desc, category_keywords from ".table_categories." ORDER BY lft ASC;");
is it correct?
|