Changeset 393

Show
Ignore:
Timestamp:
06/03/06 06:48:37 (3 years ago)
Author:
lazyatom
Message:

Minor view/flash message cleanup

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • login_engine/branches/rb_1.0/CHANGELOG

    r392 r393  
    44# Removed documentation/rake tasks that refer the schema.rb (Ticket #155) 
    55# Verified cannot be assigned via URL parameters. If more security is required, users should override the signup action itself (Ticket #169) 
     6# Minor view/flash message cleanup 
    67 
    78= v1.0.1 
  • login_engine/branches/rb_1.0/app/controllers/user_controller.rb

    r392 r393  
    4646          key = @user.generate_security_token 
    4747          url = url_for(:action => 'home', :user_id => @user.id, :key => key) 
    48           flash[:notice] = 'Signup successful! Please log in.
     48          flash[:notice] = 'Signup successful!
    4949          if LoginEngine.config(:use_email_notification) and LoginEngine.config(:confirm_account) 
    5050            UserNotify.deliver_signup(@user, params[:user][:password], url) 
    5151            flash[:notice] << ' Please check your registered email account to verify your account registration and continue with the login.' 
     52          else 
     53            flash[:notice] << ' Please log in.' 
    5254          end 
    5355          redirect_to :action => 'login' 
  • login_engine/branches/rb_1.0/app/views/user/forgot_password.rhtml

    r353 r393  
    1111 
    1212      <div class="button-bar"> 
    13         <%= submit_tag 'Submit request' %> 
     13        <%= submit_tag 'Reset Password' %> 
    1414        <%= link_to 'Cancel', :action => 'login' %> 
    1515      </div>