Created
December 11, 2012 06:38
-
-
Save drinkspiller/4256375 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @seo_stuff = SeoSetting.where( '(( controller = ? AND action = ? ) OR path = ? )', params[:controller], params[:action], request.path).limit(1) | |
| if @seo_stuff.any? | |
| @page_title = @seo_stuff.page_title #<-- undefined method `page_title'...but I can see the value in the view | |
| @meta_keywords = @seo_stuff.meta_keywords | |
| @meta_description = @seo_stuff.meta_description | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment