Commit f2439d1b9749a0ff824bcf6d4635d0dff8b82a06
1 parent
db62803f
Exists in
master
and in
29 other branches
Fix syntax error
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/profile/_profile_scrap_reply_form.html.erb
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 | :title => _('Leave your comment'), |
12 | 12 | :onfocus => ("if(this.value==this.title){this.value='';this.style.color='#000'};this.style.backgroundImage='url(" + profile_icon(current_person, :icon, false) + ")'" if logged_in?), |
13 | 13 | :onblur => ("if(this.value==''){this.value=this.title;this.style.color='#ccc'};this.style.backgroundImage='none'" if logged_in?), |
14 | - :value => _('Leave your comment'), %> | |
14 | + :value => _('Leave your comment') %> | |
15 | 15 | <%= hidden_field_tag 'scrap[scrap_id]', scrap.id %> |
16 | 16 | <%= hidden_field_tag 'receiver_id', scrap.sender.id %> |
17 | 17 | <% end %> | ... | ... |