diff --git a/app/views/issues/_action_menu.html.erb b/app/views/issues/_action_menu.html.erb
index 4b23897d3..49ea0d57e 100644
--- a/app/views/issues/_action_menu.html.erb
+++ b/app/views/issues/_action_menu.html.erb
@@ -1,5 +1,5 @@
-<%= watcher_link_issue(@issue, User.current) %>
+<%#= watcher_link_issue(@issue, User.current) %>
<%#= link_to l(:button_copy), project_copy_issue_path(@project, @issue), :class => 'icon icon-copy' if User.current.allowed_to?(:add_issues, @project) %>
<%= link_to l(:button_delete), issue_path(@issue.id), :data => {:confirm => issues_destroy_confirmation_message(@issue)}, :method => :delete, :class => 'talk_edit fr' if User.current.allowed_to?(:delete_issues, @project) %>
diff --git a/app/views/issues/_form.html.erb b/app/views/issues/_form.html.erb
index 7349a5f1d..5679c92d4 100644
--- a/app/views/issues/_form.html.erb
+++ b/app/views/issues/_form.html.erb
@@ -52,7 +52,7 @@
<% if @issue.safe_attribute? 'description' %>
-
+
<%= f.label_for_field :description, :required => @issue.required_attribute?('description'), :no_label => true, :class => "label" %>
<%= link_to_function image_tag('edit.png'), '$(this).hide(); $("#issue_description_and_toolbar").show()' unless @issue.new_record? %>
<%= content_tag 'span', :id => "issue_description_and_toolbar", :style => (@issue.new_record? ? nil : 'display:none') do %>
@@ -87,7 +87,7 @@
-
+
<%= render :partial => 'attachments/form', :locals => {:container => @issue} %>
@@ -95,22 +95,22 @@
<%= render :partial => 'issues/attributes' %>
-
-
+
+
-
- <%= link_to "",
- {:controller => 'watchers', :action => 'new', :project_id => @issue.project},
- :remote => true,
- :method => 'get',
+
+ <%#= link_to "",
+# {:controller => 'watchers', :action => 'new', :project_id => @issue.project},
+# :remote => true,
+# :method => 'get',
:class => "pic_sch mt5 ml5" %>
-
- <%= javascript_tag "observeSearchfield('user_search', 'users_for_watcher', '#{ escape_javascript watchers_autocomplete_for_user_path(:user => @available_watchers, :format => 'js', :flag => 'ture') }')" %>
-
-
- <%= watchers_checkboxes(@issue, @available_watchers) %>
-
-
-
+
+ <%#= javascript_tag "observeSearchfield('user_search', 'users_for_watcher', '#{ escape_javascript watchers_autocomplete_for_user_path(:user => @available_watchers, :format => 'js', :flag => 'ture') }')" %>
+
+
+
+
+
+
<%= call_hook(:view_issues_form_details_bottom, {:issue => @issue, :form => f}) %>
<% end %>
\ No newline at end of file