mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Merge pull request #3813 from nfauchelle/patch-1
Flush should be off by default - consistant
This commit is contained in:
commit
eca781ed91
@ -78,9 +78,9 @@ class TestRunner extends Controller {
|
|||||||
* top of the loader stacks.
|
* top of the loader stacks.
|
||||||
*/
|
*/
|
||||||
public static function use_test_manifest() {
|
public static function use_test_manifest() {
|
||||||
$flush = true;
|
$flush = false;
|
||||||
if(isset($_GET['flush']) && $_GET['flush'] === '0') {
|
if(isset($_GET['flush']) && ($_GET['flush'] === '1' || $_GET['flush'] == 'all')) {
|
||||||
$flush = false;
|
$flush = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$classManifest = new SS_ClassManifest(
|
$classManifest = new SS_ClassManifest(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user