Changeset 2233

Show
Ignore:
Timestamp:
03/07/2008 06:54:18 PM (10 months ago)
Author:
Shadowhand
Message:

Follow up to r2229, welcome and examples should not be allowed in production either.

Location:
trunk/application/controllers
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/application/controllers/examples.php

    r2150 r2233  
    1212 */ 
    1313class Examples_Controller extends Controller { 
     14 
     15        // Do not allow to run in production 
     16        const ALLOW_PRODUCTION = FALSE; 
    1417 
    1518        /** 
  • trunk/application/controllers/welcome.php

    r2078 r2233  
    66 */ 
    77class Welcome_Controller extends Controller { 
     8 
     9        // Disable this controller when Kohana is set to production mode. 
     10        // See http://doc.kohanaphp.com/installation/deployment for more details. 
     11        const ALLOW_PRODUCTION = FALSE; 
    812 
    913        public function index()