Skip to content
Snippets Groups Projects
Commit 095e7458 authored by xamgore's avatar xamgore
Browse files

Removed redundant comments

parent e0c142a9
Branches
Tags
No related merge requests found
......@@ -13,7 +13,7 @@ class Controller_Office_Students extends Controller_Environment_Office
$this->twig->set([
'Faculties' => $this->user->isAdmin() ? Model_Faculties::load() : [],
'GradesList' => Model_Grades::loadAll() # todo: ->as_array('Degree'),
'GradesList' => Model_Grades::loadAll(),
])->set_filename(static::OFFICE . 'students/search');
}
......@@ -32,7 +32,7 @@ class Controller_Office_Students extends Controller_Environment_Office
])->set_filename(static::OFFICE . 'students/add');
}
public function action_upload() { // FIXME: ПОЧЕМУ это не хендлер?????
public function action_upload() {
$errors = [];
if (!empty($_FILES['students']) && $this->request->method() == 'POST') {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment