search for: publishing_tim

Displaying 1 result from an estimated 1 matches for "publishing_tim".

Did you mean: publishing_time
2006 Jun 08
1
Error Handling Question
...s PhotoController < ApplicationController def show if params[:id].nil? #Take the user to the index page of the most recent photo. @photo = Photo.find_most_recent else #Show a photo with a specified id if @photo = Photo.find(params[:id], :conditions => "publishing_time <= now()") else #Attempt to send them to the most recent post with a flash[:warning] flash[:warning] = ''No published photo exists that satisfies the given parameters.'' redirect_to :action => "show" end end end I'...