Displaying 1 result from an estimated 1 matches for "rewrite_url_without_facebook".
Did you mean:
  rewrite_url_without_facebooker
  
2007 Dec 20
0
Relative URL fix
...anvas
       options.delete(:skip_relative_url_root) if options 
[:skip_relative_url_root] == true && !is_link_to_canvas
       if is_link_to_canvas && !options.has_key?(:host)
          options[:host] = "apps.facebook.com"
       end
       options.delete(:canvas)
       rewrite_url_without_facebooker(*args)
     end
Though this produced one failing test in the facebook rails  
integration tests.
The "test_url_for_doesnt_include_url_root_when_not_linked_to_canvas"  
failed but when i looked at the controller it was still testing for  
facebook variables namely the before_filters. T...