Commit 9bcc05645980c9d483d56d9b8daf454e531ee746
1 parent
16ab6b2a
Importers CRUD
Showing
2 changed files
with
2 additions
and
3 deletions
Show diff stats
backend/controllers/SiteController.php
backend/controllers/UserController.php
... | ... | @@ -8,11 +8,11 @@ use backend\models\UserSearch; |
8 | 8 | use yii\web\Controller; |
9 | 9 | use yii\web\NotFoundHttpException; |
10 | 10 | use yii\filters\VerbFilter; |
11 | -use backend\components\base\BaseController; | |
11 | + | |
12 | 12 | /** |
13 | 13 | * UserController implements the CRUD actions for User model. |
14 | 14 | */ |
15 | -class UserController extends BaseController | |
15 | +class UserController extends Controller | |
16 | 16 | { |
17 | 17 | public $layout = "/column"; |
18 | 18 | ... | ... |