diff --git a/documentation/changelog.html b/documentation/changelog.html
index d110664264..6ebdc0889b 100755
--- a/documentation/changelog.html
+++ b/documentation/changelog.html
@@ -89,6 +89,9 @@
Wiki: Fixed links with accents and special characters do not work well in utf-8 #2286
A student can edit a file through url into documents tool after visit his/her group #2485
Social network to run from 1024x768 #1958
+ Irrelevant check has been removed, it prevented the page "Administration > Setting the registration page" to be accessed
+ in the case of assigned value "No" to the setting "Administration > Configuration settings > Portal > Registration".
+ This bug has been reported by Wolfgang in the forum and by Oliver Corre in the Chamilo support site (Bug #1846)
Security
diff --git a/main/admin/configure_inscription.php b/main/admin/configure_inscription.php
index a5beeb2eda..ab8cc15a5d 100755
--- a/main/admin/configure_inscription.php
+++ b/main/admin/configure_inscription.php
@@ -163,10 +163,12 @@ echo '';
echo $tool_name;
echo '
';
-// Forbidden to self-register
-if (get_setting('allow_registration') == 'false') {
- api_not_allowed();
-}
+// The following security condition has been removed, because it makes no sense here. See Bug #1846.
+//// Forbidden to self-register
+//if (get_setting('allow_registration') == 'false') {
+// api_not_allowed();
+//}
+
//api_display_tool_title($tool_name);
if (get_setting('allow_registration') == 'approval') {
Display::display_normal_message(get_lang('YourAccountHasToBeApproved'));