• The LFAPPS__MIN_PHP_VERSION constant is currently set at 5.3, but the plugin actually requires 5.4. That being said, the only line I’m aware of that currently requires 5.4 is the one below (from PersonalizedStream::createOrUpdateTopic()):

    return self::createOrUpdateTopics($core, array($id => $label))[0];

    It appears that attempting to access an element in the return array by appending [0] to its method call is only supported in 5.4+.

    https://wordpress.org/plugins/livefyre-apps/

The topic ‘Plugin lists PHP 5.3 as min version, actually requires PHP 5.4’ is closed to new replies.