I found this important fix on the forum. Certainly this is a needed fix so here goes. All credit goes to Ezio Caffi
The file includes this same text here and not the full package.

Nothing seem to happen if you try to activate/deactivate the information by click on the bullet in the "Information pages" page.

This is what I've been doing:
In file

admin/information_manager.php two new line added


CODE
[...]
273 case 'Visible':
+ $information_id = $_GET['information_id'];
+ $visible = $_GET['visible'];
274 if ($visible == '1') {
275 $vivod=DEACTIVATION_ID_INFORMATION;
276 tep_db_query("update " . TABLE_INFORMATION . " set visible = '0' where information_id = '" . (int)$information_id . "'");
277 }
278 else {
279 $vivod=ACTIVATION_ID_INFORMATION;
280 tep_db_query("update " . TABLE_INFORMATION . " set visible = '1' where information_id = '" . (int)$information_id . "'");
281 }
282 $data=tep_get_information_list();
283 $title="$confirm $vivod $information_id " . SUCCED_INFORMATION . "";
284 include('information_list.php');
285 break;
[...]


eZio

More...