-
Improvement
-
Resolution: Fixed
-
Minor
-
2.8.3
-
MOODLE_28_STABLE
-
MOODLE_29_STABLE
-
MDL-49164_old_rego -
afaik it can be removed.
Noticed this while working on MDL-48894.
These days /admin/index.php displays a notification saying that you are not registered and a button that sends you over to /admin/registration/index.php which handles the registration process. The user is never sent back to /admin/index.php so the following is never executed.
I don't know how long this has been the case but I suspect it has been quite some time.
// Check if we are returning from moodle.org registration and if so, we mark that fact to remove reminders
|
if (!empty($id) and $id == $CFG->siteidentifier) {
|
set_config('registered', time());
|
}
|
This is only set_config() call that sets the registered item. There is no get_config() call that retrieves it. It appears to be a relic a bygone age.
- has a QA test
-
MDLQA-7649 An admin can register their site
- Open
-
MDLQA-15225 CLONE - Site registration works as expected.
- Passed
-
MDLQA-15815 CLONE - Site registration works as expected.
- Passed
-
MDLQA-16462 CLONE - An admin can register their site
- Passed
-
MDLQA-17080 CLONE - An admin can register their site
- Passed
- is a regression caused by
-
MDL-19309 META: Community Hub
- Closed