Kohana 3: Auth module
- by Thomas
Hi, i'm trying to learn the Kohana's Auth module but login method always return false.
Controller:
<?php defined('SYSPATH') OR die('No Direct Script Access');
class Controller_Auth extends Controller {
public function action_index() {
if($_POST) {
$this->login();
}
$this->template =…