Commit d8c97b32 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes #780: Redmine fails to start with a const_missing error on…

Fixes #780: Redmine fails to start with a const_missing error on Redmine::MenuManager::MenuItem::GLoc (occurs when a Redmine plugin is loaded before GLoc).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1187 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 918937c8
...@@ -48,7 +48,7 @@ Rails::Initializer.run do |config| ...@@ -48,7 +48,7 @@ Rails::Initializer.run do |config|
:port => 25, :port => 25,
:domain => "somenet.foo", :domain => "somenet.foo",
:authentication => :login, :authentication => :login,
:user_name => "redmine", :user_name => "redmine@somenet.foo",
:password => "redmine", :password => "redmine",
} }
......
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
# along with this program; if not, write to the Free Software # along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require 'gloc'
module Redmine module Redmine
module MenuManager module MenuManager
module MenuController module MenuController
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment