Merge branch 'master' of github.com:diaspora/diaspora

This commit is contained in:
Daniel Vincent Grippi 2010-09-14 15:42:49 -07:00
commit b9d28f6d21
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