
Originally Posted by
clydejones
Just make sure you've add comments to the changed files where you made the edits:
//BOF header menu control
//EOF header menu control
How should I comment replaced code? ie. a sql select statement in category_product_listing.php is changed from
PHP Code:
$categories = $db->Execute("select c.categories_id, cd.categories_name, cd.categories_description, c.categories_image, c.parent_id, c.sort_order, c.date_added, c.last_modified, c.categories_status
to this
PHP Code:
$categories = $db->Execute("select c.categories_id, cd.categories_name, cd.categories_description, c.categories_image, c.parent_id, c.sort_order, c.date_added, c.last_modified, c.categories_status, c.menu_status
Should I comment out the entire original code block and then add mine in with the //BOF...//EOF comments?
Thanks for your help, by the way!