diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-10-24 17:12:39 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-10-24 17:12:39 +0000 |
commit | 16eda4c5c91c55a09eec7a1d04b9db98aeb4ece5 (patch) | |
tree | 5e613765f4d5e5f9883a227abddd7db2397b66eb /app/helpers/admin_helper.rb | |
parent | b4101c8b65ecab179a3af492023d95a20d4bc388 (diff) | |
download | redmine-16eda4c5c91c55a09eec7a1d04b9db98aeb4ece5.tar.gz redmine-16eda4c5c91c55a09eec7a1d04b9db98aeb4ece5.zip |
Adds the ability to search for a project name or identifier on the administration projects list.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1947 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/helpers/admin_helper.rb')
-rw-r--r-- | app/helpers/admin_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/admin_helper.rb b/app/helpers/admin_helper.rb index 1b41d8374..8f81f66ba 100644 --- a/app/helpers/admin_helper.rb +++ b/app/helpers/admin_helper.rb @@ -17,7 +17,7 @@ module AdminHelper def project_status_options_for_select(selected) - options_for_select([[l(:label_all), "*"], + options_for_select([[l(:label_all), ''], [l(:status_active), 1]], selected) end end |