mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge branch '4.0' into 4
This commit is contained in:
commit
7f6af0f0ed
11
docs/en/04_Changelogs/3.6.4.md
Normal file
11
docs/en/04_Changelogs/3.6.4.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# 3.6.4
|
||||||
|
|
||||||
|
<!--- Changes below this line will be automatically regenerated -->
|
||||||
|
|
||||||
|
## Change Log
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
* 2018-01-09 [2ef4a2d4e](https://github.com/silverstripe/silverstripe-framework/commit/2ef4a2d4ee86577b00311e65bbeb0439f7aaa1fc) , adding a missing return statement. (Nathan)
|
||||||
|
* 2017-12-21 [44930f211](https://github.com/silverstripe/silverstripe-framework/commit/44930f211be3f658fc92f2d5318255de03078701) Allow HTML 5 input tags in FunctionalTest form submissions (Daniel Hensby)
|
||||||
|
* 2017-12-14 [81150c592](https://github.com/silverstripe/silverstripe-framework/commit/81150c59225dbf1e95bb0b4dbcfbe18346f2bdff) Use PHP 5.3 array syntax (Daniel Hensby)
|
2
thirdparty/simpletest/page.php
vendored
2
thirdparty/simpletest/page.php
vendored
@ -94,7 +94,7 @@ class SimpleTagBuilder {
|
|||||||
$tag_class = $map[$type];
|
$tag_class = $map[$type];
|
||||||
return new $tag_class($attributes);
|
return new $tag_class($attributes);
|
||||||
}
|
}
|
||||||
return false;
|
return new SimpleTextTag($attributes);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user