summary refs log tree commit diff
path: root/pages/config_edit.php
diff options
context:
space:
mode:
Diffstat (limited to 'pages/config_edit.php')
-rw-r--r--pages/config_edit.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/pages/config_edit.php b/pages/config_edit.php
new file mode 100644
index 0000000..b48bdbf
--- /dev/null
+++ b/pages/config_edit.php
@@ -0,0 +1,38 @@
+<?php
+# MantisBT - A PHP based bugtracking system
+
+# MantisBT 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.
+#
+# MantisBT 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 MantisBT.  If not, see <http://www.gnu.org/licenses/>.
+
+/**
+ * Edit Core Formatting Configuration
+ * @package MantisBT
+ * @copyright Copyright 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
+ * @copyright Copyright 2002  MantisBT Team - mantisbt-dev@lists.sourceforge.net
+ * @link http://www.mantisbt.org
+ */
+
+form_security_validate( 'plugin_smalltech_config_edit' );
+
+auth_reauthenticate();
+access_ensure_global_level( config_get( 'manage_plugin_threshold' ) );
+
+$f_process_gerrit_links = gpc_get_int( 'process_gerrit_links', ON );
+
+if( plugin_config_get( 'process_gerrit_links' ) != $f_process_gerrit_links ) {
+  plugin_config_set( 'process_gerrit_links', $f_process_gerrit_links );
+}
+
+form_security_purge( 'plugin_smalltech_config_edit' );
+
+print_header_redirect( plugin_page( 'config', true ) );