Retrofit of file based "transactions" as an alternative to session based ones.

SVN:2.1.0[3669]
This commit is contained in:
Denis Flaven
2015-08-05 14:12:34 +00:00
parent 8e863d4890
commit 96c8ee5e4d
3 changed files with 99 additions and 16 deletions

View File

@@ -817,6 +817,22 @@ class Config
'source_of_value' => '',
'show_in_conf_sample' => false,
),
'transactions_enabled' => array(
'type' => 'bool',
'description' => 'Whether or not the whole mechanism to prevent multiple submissions of a page is enabled.',
'default' => true,
'value' => '',
'source_of_value' => '',
'show_in_conf_sample' => false,
),
'log_transactions' => array(
'type' => 'bool',
'description' => 'Whether or not to enable the debug log for the transactions.',
'default' => false,
'value' => '',
'source_of_value' => '',
'show_in_conf_sample' => false,
),
);
public function IsProperty($sPropCode)