class RssfdController < ApplicationController
def rpage
$realm=params[:id].gsub("articles","")
@articles = Art.find :all, :order => "artnum DESC", :limit => 25,
:conditions=> {
:realm=>$realm
}
@realmrow = Realm.find(:first, :conditions=> ["name='"+$realm+"'"])
@uresourcerowh = Uresource.find(:first, :conditions=> ["realm='"+$realm+"' AND label='Print Home'"])
#.gsub("mcjbio.html","")
end
end
|