diff options
author | francis <francis> | 2009-06-30 09:34:33 +0000 |
---|---|---|
committer | francis <francis> | 2009-06-30 09:34:33 +0000 |
commit | 36141ae5c6fc922f0e45ce8803765031cdb9fbbb (patch) | |
tree | 6810b1684999a0065bd2d45f02329b48e1632df8 | |
parent | 0333f655da565f0380546a388687923c882fe742 (diff) |
Put prominence options in a better order, normal first.
-rw-r--r-- | app/views/admin_request/edit.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin_request/edit.rhtml b/app/views/admin_request/edit.rhtml index c8ab2a5cf..2e9b5460c 100644 --- a/app/views/admin_request/edit.rhtml +++ b/app/views/admin_request/edit.rhtml @@ -8,7 +8,7 @@ <%= text_field 'info_request', 'title', :size => 50 %></p> <p><label for="info_request_prominence"><strong>Prominence</strong></label> - <%= select( 'info_request', "prominence", { "normal" => "normal", "backpage" => "backpage", "hidden" => "hidden"}) %> + <%= select( 'info_request', "prominence", [ "normal", "backpage", "hidden" ]) %> (backpage means hidden from lists/search; hidden means completely hidden) </p> |