Displaying 1 result from an estimated 1 matches for "sp_article_auto_close".
2006 May 03
0
getting error like undefined local variable or method `confi
Hi,
This is one of the method in "spam_protection.rb" in typo 2.6.0 
application.
========================
  def article_closed?(record)
    if config[''sp_article_auto_close''] > 0
      if record.article.created_at.to_i < 
config[''sp_article_auto_close''].days.ago.to_i
        logger.info("[SP] Blocked interaction with 
#{record.article.title}")
        return true
      end
    end
  end
=======================
When I am tryin...