find_by_sql sanity check

@friends_recipes = Recipe.find_by_sql[query, params[:id]]

should be...

   @friends_recipes = Recipe.find_by_sql(query, params[:id])

I believe...

--Jeremy

Oh *smack*

   @friends_recipes = Recipe.find_by_sql([query, params[:id]])

That should work I thnk. It's too late to think. :wink:

--Jeremy