From 4dfa4bbc77fe54e30a6a5554538b2ea1b156b5fb Mon Sep 17 00:00:00 2001 From: John Goerzen Date: Mon, 10 Mar 2008 15:14:50 +0000 Subject: [PATCH] Change name of label for new project field Since switching to --git-dir in r1218, we must have patch to the .git directory or a bare repository. --git-dir will not accept a working path that only contains a .git directory. Updated label to clarify this. git-svn-id: http://redmine.rubyforge.org/svn/branches/work@1226 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- git/app/helpers/repositories_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/app/helpers/repositories_helper.rb b/git/app/helpers/repositories_helper.rb index b53a7c0bb..31daf1bd8 100644 --- a/git/app/helpers/repositories_helper.rb +++ b/git/app/helpers/repositories_helper.rb @@ -81,7 +81,7 @@ module RepositoriesHelper end def git_field_tags(form, repository) - content_tag('p', form.text_field(:url, :label => 'Root directory', :size => 60, :required => true, :disabled => (repository && !repository.root_url.blank?))) + content_tag('p', form.text_field(:url, :label => 'Path to .git directory', :size => 60, :required => true, :disabled => (repository && !repository.root_url.blank?))) end def cvs_field_tags(form, repository)