Forum

Thread tagged as: Question

Update to 2.7.1: "...add categories to config/apps.php"

In the notes for the 2.7.1 update you state "... and add categories to your config/apps.php file". My old config/apps file contains:

<?php
    include(PERCH_PATH.'/core/apps/content/runtime.php');
?>

yet the new 2.7.1 file contains:

<?php
    $apps_list = array(
        'content', 
        'categories',
    );

Should I just substitute all the old content of 'apps.php' file for the new content?

Peter Hammarling

Peter Hammarling 0 points

  • 7 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

Thanks Drew. The apps.php file now looks like this:

<?php
    include(PERCH_PATH.'/core/apps/content/runtime.php');
    include(PERCH_PATH.'/core/apps/categories/runtime.php');
?>

If you don't reply to the contrary I'll assume this is OK.