@@ -24,12 +24,12 @@ They created pull requests. Thanks for cooperating.
2424## At a Glance
2525
2626The FileMaker database named "TestDB.fmp12" is hosted on localhost, and
27- it set the "fmrest" as access privilege. The account to connect with REST API is "web"
28- and "password". This database has the layout named "person_layout", and you
27+ it sets the "fmrest" as access privilege. The account to connect with REST API is "web"
28+ and "password." This database has the layout named "person_layout," and you
2929can use the layout name as a property of the FMDataAPI instance. The return
30- value of the "query" method is Iterator and can repeat in foreach statement
30+ value of the "query" method is Iterator and can repeat in the foreach statement
3131with each record in the query result. This layout has the field named
32- "FamilyName" and "GivenName", and can use the field name as a property.
32+ "FamilyName" and "GivenName," and can use the field name as a property.
3333
3434```
3535$fmdb = new FMDataAPI("TestDB", "web", "password");
@@ -125,10 +125,10 @@ MIT License
125125 Add methods(setFieldHTMLEncoding, getFieldHTMLEncoding) to the FMDataAPI class.
126126 These are going to use for compatibility mode of FileMaker API for PHP.
127127- 2022-06-06: [ Ver.27]
128- Dropped the support of PHP5, minimal version is PHP 7.1, but 7.2 or later is recommended.
128+ Dropped the support of PHP5, the minimum version is PHP 7.1, but 7.2 or later is recommended.
129129- 2022-08-04: [ Ver.28]
130130 Added the getContainerData(URL) method to the FMDataAPI class for accessing container data from the url containing /Streaming/MainDB.
131- [ BUG FIX] The FileMakerRelation class's toArray method didn't return array (Thanks to Talwinder Singh).
131+ [ BUG FIX] The FileMakerRelation class's toArray method didn't return an array (Thanks to Talwinder Singh).
132132- 2022-12-28: [ Ver.29]
133133 Fixed the 'HTTP/2 stream 0 was not closed cleanly' problem with the new FileMaker (Thanks to @thijsmeijer ).
134134 Also fixed the getPortalNames issue for single record relation (Thanks to @PGMMattias ).
@@ -137,5 +137,8 @@ MIT License
137137- 2023-11-24: [ Ver.31]
138138 The curlErrorMessage() method returns the error message from curl (Thanks to @P1-Roger ).
139139 Corrected phpdoc issue (Thanks to @patacra ).
140- - 2024-XX-XX: [ Ver.31] (upcoming release)
141- Fix SSL certificate check errors by using the system's certificate authorities (Thanks to @patacra )
140+ - 2024-XX-XX: [ Ver.32] (upcoming release)
141+ From this version, the minimum PHP version is 8.1.
142+ Fix SSL certificate check errors by using the system's certificate authorities (Thanks to @patacra ).
143+ FileMakerLayout::getMetadataOld and getMetadata methods don't return the false value in the case of log-in error.
144+ It returns just null.
0 commit comments