Skip to content

Commit 56c1833

Browse files
authored
Merge pull request #16521 from niden/5.0.x
Aligning Changelog
2 parents e51e71b + 4a6f5b7 commit 56c1833

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CHANGELOG-5.0.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- Fixed `Phalcon\Db\Adapter\Pdo\Postgresql::describeColumns()` to return the correct string back [#16371](https://github.com/phalcon/cphalcon/issues/16371)
1414
- Fixed `Phalcon/Filter/Validation::validate()` and `Phalcon/Filter/Validation/ValidationInterface::validate()` to return also `bool` [#16337](https://github.com/phalcon/cphalcon/issues/16337)
1515
- Fixed `Phalcon\Mvc\Model::toArray` to ignore getters when the field name is `source`. [#16514](https://github.com/phalcon/cphalcon/issues/16514)
16+
- Fixed `Phalcon\Http\Request::getPut` to correctly get form encoded data [#16519](https://github.com/phalcon/cphalcon/issues/16519)
1617

1718
### Removed
1819

phalcon/Http/Request.zep

+7-4
Original file line numberDiff line numberDiff line change
@@ -1721,10 +1721,13 @@ class Request extends AbstractInjectionAware implements RequestInterface, Reques
17211721
if null === cached {
17221722
let contentType = this->getContentType();
17231723

1724-
if typeof contentType == "string" &&
1725-
(stripos(contentType, "json") != false ||
1726-
stripos(contentType, "multipart/form-data") !== false) {
1727-
1724+
if (
1725+
typeof contentType == "string" &&
1726+
(
1727+
stripos(contentType, "json") != false ||
1728+
stripos(contentType, "multipart/form-data") !== false
1729+
)
1730+
) {
17281731
if (stripos(contentType, "json") != false) {
17291732
let cached = this->getJsonRawBody(true);
17301733
}

0 commit comments

Comments
 (0)