diff --git a/app/controllers/post_visibilities_controller.rb b/app/controllers/post_visibilities_controller.rb
index 6a6411a47e1f935e294dab3b3451f72b6c84793d..aa5b93b97dda1c19baf00d7a03bab3d242e1e073 100644
--- a/app/controllers/post_visibilities_controller.rb
+++ b/app/controllers/post_visibilities_controller.rb
@@ -9,7 +9,7 @@ class PostVisibilitiesController < ApplicationController
   def update
     #note :id references a postvisibility
 
-    @post = Post.where(:id => params[:post_id]).select("id, author_id").first
+    @post = Post.where(:id => params[:post_id]).select("id, guid, author_id").first
     @contact = current_user.contact_for(@post.author)
 
     if @contact && @vis = PostVisibility.where(:contact_id => @contact.id,