Missing Method in ForumsController

You are seeing this error because the action forum_list is not defined in controller ForumsController

If you want to customize this error message, create app/views/errors/missing_action.thtml.

Fatal: Confirm you have created the ForumsController::forum_list() in file : app/controllers/forums_controller.php

<?php
class ForumsController extends AppController {
   function forum_list() {
   }

}
?>