You could call 'index' like a method from the other action, but then
you'll still need to do the render in the other action. So...
def archive
#setup instance vars
index #go run the code in 'index'
render :action => 'index' #render the template
end
David Coleman wrote: