Skip to content

Commit

Permalink
Merge pull request #2996 from ec-europa/release-2.6.17
Browse files Browse the repository at this point in the history
Release 2.6.17
  • Loading branch information
Fefaine authored Aug 3, 2021
2 parents c23964c + cfc9168 commit d815cda
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion phpcs-ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<exclude-pattern>profiles/common/modules/custom/nexteuropa_dgt_connector/tmgmt_poetry/tmgmt_poetry.module</exclude-pattern>
<exclude-pattern>profiles/common/modules/custom/nexteuropa_dgt_connector/tmgmt_poetry/inc/tmgmt_poetry.webservice.inc</exclude-pattern>
</rule>

<!-- Tmgmt poetry tests not strictly follow Drupal class name conventions. -->
<rule ref="Drupal.NamingConventions.ValidClassName">
<exclude-pattern>profiles/common/modules/custom/nexteuropa_dgt_connector/tmgmt_poetry/tests/tmgmt_poetry.test</exclude-pattern>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,9 @@ function _nexteuropa_geofield_geocode($form, $form_state) {
$error = $geocode->error;
}
else {
$geocode_decoded = drupal_json_decode($geocode->data);

// @codingStandardsIgnoreStart.
$geocode_decoded = json_decode($geocode->data, FALSE);
// @codingStandardsIgnoreEnd
if ($geocode_decoded->geocodingRequestsCollection[0]->foundCount < 1) {
$error = t('No address found.');
}
Expand Down
2 changes: 1 addition & 1 deletion resources/drupal-core.make
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ api = 2
core = 7.x

projects[drupal][type] = "core"
projects[drupal][version] = "7.81"
projects[drupal][version] = "7.82"

; AJAX callbacks not properly working with the language url suffix.
; https://webgate.ec.europa.eu/CITnet/jira/browse/MULTISITE-4268
Expand Down

0 comments on commit d815cda

Please sign in to comment.