|
From: <var...@us...> - 2021-07-29 12:53:51
|
Revision: 10391
http://sourceforge.net/p/phpwiki/code/10391
Author: vargenau
Date: 2021-07-29 12:53:49 +0000 (Thu, 29 Jul 2021)
Log Message:
-----------
configurator.php: add description for DISABLED_ACTIONS
Modified Paths:
--------------
trunk/configurator.php
Modified: trunk/configurator.php
===================================================================
--- trunk/configurator.php 2021-07-29 10:29:52 UTC (rev 10390)
+++ trunk/configurator.php 2021-07-29 12:53:49 UTC (rev 10391)
@@ -532,8 +532,14 @@
new numeric_define_optional('MINOR_EDIT_TIMEOUT', MINOR_EDIT_TIMEOUT);
$properties["Disabled Actions"] =
- new array_define('DISABLED_ACTIONS', DISABLED_ACTIONS /*array()*/);
+ new array_define('DISABLED_ACTIONS', array("dumpserial", "loadfile"), "Actions listed in this array will not be allowed. The complete list
+of actions can be found in lib/main.php with the function
+getActionDescription.
+purge, remove, revert, xmlrpc, soap, upload, browse, create, diff, dumphtml,
+dumpserial, edit, loadfile, lock, unlock, viewsource, zip, ziphtml, ...
+");
+
$properties["Moderate all Pagechanges"] =
new boolean_define_commented_optional('ENABLE_MODERATEDPAGE_ALL');
@@ -2302,7 +2308,6 @@
class boolean_define
extends _define
{
-
// adds ->values property, instead of ->default_value
function boolean_define($config_item_name, $values = false, $description = '', $jscheck = '')
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|