Mark as resolved?

Hi,



As you might notice I have many troubles with our new web site. While trying to resolve problems one by one I found somthing in the Upgrade center. I am not the original developer, so I don’t know details, but it seemed upgraded from 2.0.14 to 2.0.15. I found that the following in the Installed Upgrades page of Admin/Upgrade Center. There are 3 files under “THe following files had local modifications”: changedlog.txt, copyright.txt, and controllers/admin/categories.php.



Obviously, the first two files are no problem, but the 3rd one has the followng changes. Is it Ok to “mark as resolved”?



I am not sure why it is changed. Is it part of upgrade?





Thanks,



Red is before-change, blue is after-change



//

// ‘Management’ page

//

} elseif ($mode == ‘manage’ || $mode == ‘picker’) {



if ($mode == ‘manage’) {

unset($_SESSION[‘category_ids’]);

unset($_SESSION[‘selected_fields’]);

}

[COLOR=“Red”]//CATEGORY_THRESHOLD[/COLOR]



$category_count = db_get_field(“SELECT COUNT(*) FROM ?:categories”);

$category_id = empty($_REQUEST[‘category_id’]) ? 0 : $_REQUEST[‘category_id’];

$except_id = 0;

if (!empty($_REQUEST[‘except_id’])) {

$except_id = $_REQUEST[‘except_id’];

$view->assign(‘except_id’, $_REQUEST[‘except_id’]);

}

[COLOR=“red”]if ($category_count < CATEGORY_SHOW_ALL) {[/COLOR]

[COLOR=“Blue”]if ($category_count < CATEGORY_THRESHOLD) {[/COLOR]

$params = array (

‘simple’ => false,

‘add_root’ => !empty($_REQUEST[‘root’]) ? $_REQUEST[‘root’] : ‘’,

‘except_id’ => $except_id

);

list($categories_tree, ) = fn_get_categories($params);

$view->assign(‘show_all’, true);

} else {

$params = array (

‘category_id’ => $category_id,

‘current_category_id’ => $category_id,

‘visible’ => true,

‘simple’ => false,

‘add_root’ => !empty($_REQUEST[‘root’]) ? $_REQUEST[‘root’] : ‘’,

‘except_id’ => $except_id

);

list($categories_tree, ) = fn_get_categories($params);

}



$view->assign(‘categories_tree’, $categories_tree);

[COLOR=“Red”]if ($category_count < CATEGORY_THRESHOLD) {[/COLOR]

[COLOR=“Blue”]if ($category_count < CATEGORY_SHOW_ALL) {[/COLOR] $view->assign(‘expand_all’, true);

}

if (defined(‘AJAX_REQUEST’)) {

$view->assign(‘category_id’, $category_id);

}

}

The red is what it used to be and the blue is what it is now.

I clicked the “Mark as resolved”, but it is still in the list under the “The following files had local modifications”. Is it right?

It should change to resolved but give you an option to change it again.

If I click on the “mark as resolved” the page appears with ALL text highlighted in GREEN.



There is nothing you can do with it except press the browser back button!



There is no indication of changes??? :confused: