[CONFIGURATION]

* BUG: The gbw3 symbolic link is correctly uninstalled now.

[FARM SERVER]
* BUG: Fix registration confirmation message.


git-svn-id: svn://localhost/gambas/trunk@6571 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2014-10-24 23:20:33 +00:00
parent 6734c6714a
commit c8fdb28610
2 changed files with 3 additions and 1 deletions
app
Makefile.am
src/gambas3-farm-server/.src

View file

@ -46,6 +46,7 @@ install-exec-local:
uninstall-local:
@rm -f $(DESTDIR)$(bindir)/gambas$(GAMBAS_VERSION)
@rm -f $(DESTDIR)$(bindir)/gbs$(GAMBAS_VERSION)
@rm -f $(DESTDIR)$(bindir)/gbw$(GAMBAS_VERSION)
@(cd $(srcdir)/src; for p in `cat INSTALL`; do rm -f $(DESTDIR)$(bindir)/$$p.gambas; done)
dist-hook:

View file

@ -112,6 +112,7 @@ Private Sub RegisterUser()
sLogin = Request["login"]
sPassword = Request["password"]
sName = Request["name"]
If Not sName Then sName = sLogin
sEmail = Request["email"]
If Not sLogin Then
@ -194,7 +195,7 @@ Private Sub ConfirmRegistration()
rUser.Update
Response.Begin
Print "<h1>Welcome "; Html(sLogin); "</h1><h2>Your account has been successfully activated!</h2>"
Print "<h1>Welcome "; Html(rUser!name); "!</h1><h2>Your account has been successfully activated.</h2>"
Response.End
End