diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-10-17 22:11:41 +0300 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-10-17 22:11:41 +0300 |
| commit | 2cd3d421817a225dcd6068ce9aeac0689b5b97f0 (patch) | |
| tree | e2e83bab397fbd0afd73b2a1fd20907f310db175 /app/helpers/profile_helper.rb | |
| parent | 164f9d876083db94c47185ddcd11c40cde08ea01 (diff) | |
| download | gitlab-ce-2cd3d421817a225dcd6068ce9aeac0689b5b97f0.tar.gz | |
Use gitlab_config intead of Gitlab.config.gitlab in views
Diffstat (limited to 'app/helpers/profile_helper.rb')
| -rw-r--r-- | app/helpers/profile_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/profile_helper.rb b/app/helpers/profile_helper.rb index 88d9f184d0e..dd9e03d95a8 100644 --- a/app/helpers/profile_helper.rb +++ b/app/helpers/profile_helper.rb @@ -14,6 +14,6 @@ module ProfileHelper end def show_profile_remove_tab? - Gitlab.config.gitlab.signup_enabled && !current_user.ldap_user? + gitlab_config.signup_enabled && !current_user.ldap_user? end end |
