Bug #20218 » 10741_v2.diff
t3lib/cache/backend/class.t3lib_cache_backend_filebackend.php (working copy) | ||
---|---|---|
*/
|
||
class t3lib_cache_backend_FileBackend extends t3lib_cache_backend_AbstractBackend {
|
||
const SEPARATOR = '-';
|
||
const SEPARATOR = '@';
|
||
const FILENAME_EXPIRYTIME_FORMAT = 'YmdHis';
|
||
const FILENAME_EXPIRYTIME_GLOB = '??????????????';
|
t3lib/cache/frontend/interfaces/interface.t3lib_cache_frontend_frontend.php (working copy) | ||
---|---|---|
/**
|
||
* Pattern an entry identifer must match.
|
||
*/
|
||
const PATTERN_ENTRYIDENTIFIER = '/^[a-zA-Z0-9_%]{1,250}$/';
|
||
const PATTERN_ENTRYIDENTIFIER = '/^[a-zA-Z0-9_%\-&]{1,250}$/';
|
||
/**
|
||
* Pattern a tag must match.
|
||
*/
|
||
const PATTERN_TAG = '/^[a-zA-Z0-9_%]{1,250}$/';
|
||
const PATTERN_TAG = '/^[a-zA-Z0-9_%\-&]{1,250}$/';
|
||
/**
|
||
* Returns this cache's identifier
|
- « Previous
- 1
- 2
- Next »