From 23c49ded06afbd5116af62ef51c0204958fd9c3f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 7 Apr 2017 15:53:13 +0100 Subject: [PATCH] Wording --- src/freedombone-app-friendica | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/freedombone-app-friendica b/src/freedombone-app-friendica index 82ee4a5d..d5a8b634 100755 --- a/src/freedombone-app-friendica +++ b/src/freedombone-app-friendica @@ -134,7 +134,7 @@ function friendica_close_registrations { --msgbox $"New registrations are now closed" 6 40 } -function friendica_open_registrations { +function friendica_allow_registrations { sed -i "s|REGISTER_CLOSED|REGISTER_OPEN|g" /var/www/$FRIENDICA_DOMAIN_NAME/htdocs/.htconfig.php dialog --title $"Friendica Account Registrations" \ --msgbox $"New registrations are permitted" 6 40 @@ -151,7 +151,7 @@ function configure_interactive_friendica { 1 $"Set channel directory server" off \ 2 $"Renew SSL certificate" off \ 3 $"Close new account registrations" off \ - 4 $"Open new account registrations" off \ + 4 $"Allow new account registrations" off \ 5 $"Back to main menu" on 2> $data sel=$? case $sel in @@ -162,7 +162,7 @@ function configure_interactive_friendica { 1) friendica_channel_directory_server;; 2) friendica_renew_cert;; 3) friendica_close_registrations;; - 4) friendica_open_registrations;; + 4) friendica_allow_registrations;; 5) break;; esac done