Skip to content
Snippets Groups Projects
Commit 417f6579 authored by PavelBegunkov's avatar PavelBegunkov
Browse files

fix

parent a3aba0cc
Branches
Tags
No related merge requests found
......@@ -1857,8 +1857,7 @@ BEGIN
LIMIT 1;
IF (checker = 1 AND ExamType = 'credit') OR
(checker = 0 AND ExamType = 'exam')
IF (checker != ExamType)
THEN
UPDATE `disciplines`
SET disciplines.ExamType = ExamType
......@@ -1869,6 +1868,7 @@ BEGIN
ELSE
SET checker = DeleteModuleExam(TeacherID, DisciplineID);
END IF;
RETURN 0;
END IF;
RETURN 0;
END //
......
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