MDL-31560 Error: Fixed coding style

This commit is contained in:
Rajesh Taneja 2013-09-12 11:12:37 +08:00
parent 2b503e40f2
commit af0afab30a

View File

@ -3,9 +3,9 @@
require('../config.php');
require_once($CFG->libdir.'/eventslib.php');
if ($form = data_submitted()) { // form submitted, do not check referer (original page unknown)!
/// Only deal with real users
// Form submitted, do not check referer (original page unknown).
if ($form = data_submitted()) {
// Only deal with real users.
if (!isloggedin()) {
redirect($CFG->wwwroot);
}