Changed status to active, fixed name()

This commit is contained in:
Deon George 2016-08-31 15:01:59 +10:00
parent bdffb0cb5b
commit 33982a6cec
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ abstract class lnAuth_Controller_Admin_Module extends Controller_Module {
'id'=>'ID',
'name'=>'Name',
'notes'=>'Notes',
'status'=>'Active',
'active'=>'Active',
'external'=>'External',
))
->prepend(array(

View File

@ -48,7 +48,7 @@ abstract class lnAuth_Model_Module extends ORM {
return ORM::factory(Kohana::classname($this->name),$id);
}
public function name() {
public function name($variable=NULL) {
return $this->name;
}