21 lines
477 B
PHP
21 lines
477 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2005-2009 Keyboard Monkeys Ltd. http://www.kb-m.com
|
|
* @license http://creativecommons.org/licenses/BSD/ BSD License
|
|
* @author Keyboard Monkey Ltd
|
|
* @since CommunityID 0.9
|
|
* @package CommunityID
|
|
* @packager Keyboard Monkeys
|
|
*/
|
|
|
|
class Install_PermissionsController extends CommunityID_Controller_Action
|
|
{
|
|
protected $_numCols = 1;
|
|
|
|
public function indexAction()
|
|
{
|
|
$this->view->errors = $this->_getParam('errors');
|
|
}
|
|
}
|