Changeset 2224

Show
Ignore:
Timestamp:
03/05/08 18:28:23 (6 months ago)
Author:
Shadowhand
Message:

Fixing #465, thanks Xobb.

Location:
trunk/system
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/controllers/template.php

    r2083 r2224  
    1515 * @license    http://kohanaphp.com/license.html 
    1616 */ 
    17 class Template_Controller extends Controller { 
     17abstract class Template_Controller extends Controller { 
    1818 
    1919    // Template view name 
  • trunk/system/libraries/Controller.php

    r2010 r2224  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * Kohana Controller class. 
     3 * Kohana Controller class. The controller class must be extended to work 
     4 * properly, so this class is defined as abstract. 
    45 * 
    56 * $Id$ 
     
    1011 * @license    http://kohanaphp.com/license.html 
    1112 */ 
    12 class Controller_Core { 
     13abstract class Controller_Core { 
    1314 
    1415    /**