Browse Source

Rename experimental to transactional file locking

tags/v8.1RC2
Vincent Petry 9 years ago
parent
commit
eadf789519
2 changed files with 5 additions and 5 deletions
  1. 3
    3
      config/config.sample.php
  2. 2
    2
      settings/templates/admin.php

+ 3
- 3
config/config.sample.php View File

@@ -1025,14 +1025,14 @@ $CONFIG = array(


/**
* Enables the EXPERIMENTAL file locking.
* This is disabled by default as it is experimental.
* Enables transactional file locking.
* This is disabled by default as it is still beta.
*
* Prevents concurrent processes to access the same files
* at the same time. Can help prevent side effects that would
* be caused by concurrent operations.
*
* WARNING: EXPERIMENTAL
* WARNING: BETA quality
*/
'filelocking.enabled' => false,


+ 2
- 2
settings/templates/admin.php View File

@@ -533,9 +533,9 @@ if ($_['cronErrors']) {
<ul>
<li>
<?php if ($_['fileLockingEnabled']) {
p($l->t('Experimental File Lock is enabled.'));
p($l->t('Transactional File Locking is enabled.'));
} else {
p($l->t('Experimental File Lock is disabled.'));
p($l->t('Transactional File Locking is disabled.'));
} ?>
</li>
</ul>

Loading…
Cancel
Save