summaryrefslogtreecommitdiffstats
path: root/app/controllers/help_controller.rb
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-02-19 20:28:15 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-02-19 20:28:15 +0000
commitec77fe4e3a08420772bdf1b92c6585ec81b4e93a (patch)
treea9fa5667e3dbbdf68e0adf0df4bd6e90908506ec /app/controllers/help_controller.rb
parent609cc9221e4630814e00aa9b39ded2f9112d292e (diff)
downloadredmine-ec77fe4e3a08420772bdf1b92c6585ec81b4e93a.tar.gz
redmine-ec77fe4e3a08420772bdf1b92c6585ec81b4e93a.zip
Reverts r22717 (#39111, #40137).
git-svn-id: https://svn.redmine.org/redmine/trunk@22718 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/help_controller.rb')
-rw-r--r--app/controllers/help_controller.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/controllers/help_controller.rb b/app/controllers/help_controller.rb
deleted file mode 100644
index 12a8ceeea..000000000
--- a/app/controllers/help_controller.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# frozen_string_literal: true
-
-# Redmine - project management software
-# Copyright (C) 2006-2023 Jean-Philippe Lang
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-class HelpController < ApplicationController
- def show_wiki_syntax
- type = params[:type].nil? ? "" : "#{params[:type]}_"
- render :template => "help/wiki_syntax/#{current_language.to_s}/wiki_syntax_#{type}#{Setting.text_formatting}", :layout => nil
- end
-end