PHP 5.6 compatibility issue with 7.x-1.27

Created on 13 July 2024, 10 months ago
Updated 27 July 2024, 10 months ago

Problem/Motivation

This bug kills the whole site if you are using PHP 5.6

Steps to reproduce

Update the module from the previous version on a PHP 5.6 server.

Proposed resolution

In module.php 579 this original line:
[$timestamp, $received_hmac] = explode('|', $signed_timestamp);
Should be update to a compatibile syntax:
list($timestamp, $received_hmac) = explode('|', $signed_timestamp);

Remaining tasks

This will solve the whole issue and the site will working again.

User interface changes

There is not needed any change.

API changes

There is not needed any change.

Data model changes

There is not needed any change.

Thanks
Adam Prancz

πŸ› Bug report
Status

Fixed

Version

1.27

Component

Code

Created by

πŸ‡­πŸ‡ΊHungary Prancz_Adam

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024