MS RS fixed a small group adding bug

This commit is contained in:
maxwell 2010-09-14 15:13:55 -07:00
parent 8aa39c5f08
commit 0d37f065dc
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ class ApplicationController < ActionController::Base
protect_from_forgery :except => :receive
before_filter :set_friends_and_status
before_filter :set_friends_and_status, :except => [:create, :update]
before_filter :count_requests
layout :layout_by_resource

View file

@ -31,7 +31,7 @@ class AspectsController < ApplicationController
def create
@aspect = current_user.aspect params[:aspect]
flash[:notice] = "Click on the plus on the left side to tell Diaspora who can see your new aspect."
respond_with :location => edit_aspect_path(@aspect)
respond_with :location => aspects_manage_path
end
def new