From 38a89629457d7665c34c028d441265c297ccb51c Mon Sep 17 00:00:00 2001
From: Raphael Sofaer <raphael@joindiaspora.com>
Date: Fri, 12 Aug 2011 15:58:42 -0700
Subject: [PATCH] Fix 500 on photo destroy

---
 app/controllers/photos_controller.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/controllers/photos_controller.rb b/app/controllers/photos_controller.rb
index 14782c51af..7a1406ea9a 100644
--- a/app/controllers/photos_controller.rb
+++ b/app/controllers/photos_controller.rb
@@ -128,7 +128,7 @@ class PhotosController < ApplicationController
         format.html do
           flash[:notice] = I18n.t 'photos.destroy.notice'
           if photo.status_message_guid
-            respond_with photo, :location => photo.status_message
+            respond_with photo, :location => post_path(photo.status_message)
           else
             respond_with photo, :location => person_photos_path(current_user.person)
           end
-- 
GitLab