Added an alternate implementation for storing "transaction" identifiers on disk instead of inside the $_SESSION variable.

SVN:trunk[3598]
This commit is contained in:
Denis Flaven
2015-06-20 13:37:49 +00:00
parent 586ec4515d
commit 9ba1914524
2 changed files with 197 additions and 3 deletions

View File

@@ -809,6 +809,14 @@ class Config
'source_of_value' => '',
'show_in_conf_sample' => false,
),
'transaction_storage' => array(
'type' => 'string',
'description' => 'The type of mechanism to use for storing the unique identifiers for transactions (Session|File).',
'default' => 'Session',
'value' => '',
'source_of_value' => '',
'show_in_conf_sample' => false,
),
);
public function IsProperty($sPropCode)