Index: trunk/phase3/includes/filerepo/backend/FileBackend.php |
— | — | @@ -57,8 +57,10 @@ |
58 | 58 | * This should consist of alphanumberic, '-', and '_' characters. |
59 | 59 | * This name should not be changed after use. |
60 | 60 | * 'wikiId' : Prefix to container names that is unique to this wiki. |
61 | | - * This should consist of alphanumberic, '-', and '_' characters. |
| 61 | + * It should only consist of alphanumberic, '-', and '_' characters. |
62 | 62 | * 'lockManager' : Registered name of a file lock manager to use. |
| 63 | + * 'fileJournal' : File journal configuration; see FileJournal::factory(). |
| 64 | + * Journals simply log changes to files stored in the backend. |
63 | 65 | * 'readOnly' : Write operations are disallowed if this is a non-empty string. |
64 | 66 | * It should be an explanation for the backend being read-only. |
65 | 67 | * |