-
Bug
-
Resolution: Fixed
-
Minor
-
2.5
-
None
-
MOODLE_25_STABLE
-
MOODLE_24_STABLE
-
master_
MDL-37225_static_cache_purge -
The following code generates the output "hello world". The expected output is "hello".
<?php
|
define('CLI_SCRIPT', true);
|
require_once('config.php');
|
|
$cache = cache::make_from_params(cache_store::MODE_REQUEST, 'foo', 'bar');
|
$cache->set('hello', 'world');
|
$cache->purge();
|
echo 'hello ' . $cache->get('hello') . "\n";
|
- blocks
-
MDL-37276 replace $FILTERLIB_PRIVATE with MUC cache
-
- Closed
-