search for: stunk

Displaying 3 results from an estimated 3 matches for "stunk".

Did you mean: stuck
2007 Oct 13
4
Chapter 9
Hello, I''m currently stunk on this issue for few days and I do not know how to get it fixed. The system always raises this error message : order is closed and here is my order.rb: class Order < ActiveRecord::Base include ActiveMerchant::Billing before_validation :set_status attr_protected :id, :customer_ip, :stat...
2004 Dec 07
2
fonts - newbie squared
...I could figure out was there, verified that the rpm still wouldn't install (I assume it is on a database somewhere), downloaded the tarball for wine 20041201 and tried to install that. Worked. But did I add bugs? The problem: Fonts stink. Menu fonts stink. More specifically, NotePad fonts stunk. Looks like a billboard through a drenched windshield with the wipers off. conf file the conf file has this: [fonts] "Default" = "-adobe-helvetica-" "DefaultFixed" = "fixed" "DefaultSerif" = "-adobe-times-" "DefaultSansSerif"...
2007 Jun 29
0
acts_as_authenticated, reset_session, and redirect_back_or_default
...the call just before it to reset_session clears the session[:return_to] that the method uses to set where it will redirect. I ended up adding a version of redirect_back_or_default to the account controller that works for me (and as a benefit it keeps me from having to set session[:return_to] which stunk) def redirect_back_or_default(default) if request.env["HTTP_REFERER"].nil? redirect_to default else redirect_to(request.env["HTTP_REFERER"]) # same as redirect_to :back end end My question is, am I just missing something, is there a different version of co...