From 4163ce45441d7c4e7c5357530c0246a0c0786cf2 Mon Sep 17 00:00:00 2001 From: Crimer Date: Sat, 9 Oct 2010 11:51:42 +0000 Subject: [PATCH] Solved issue 166# "Clicking 'Photos' for an aspect appears to take you to the 'All Aspects' photo page" --- app/controllers/albums_controller.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/controllers/albums_controller.rb b/app/controllers/albums_controller.rb index 5cfbe4c85..a7ce4b5e3 100644 --- a/app/controllers/albums_controller.rb +++ b/app/controllers/albums_controller.rb @@ -10,7 +10,6 @@ class AlbumsController < ApplicationController def index @albums = current_user.albums_by_aspect(@aspect).paginate :page => params[:page], :per_page => 9, :order => 'created_at DESC' - @aspect = :all respond_with @albums, :aspect => @aspect end