Not sure how much anyone cares as PHP 5.3 has reached end of life (although many servers likely still running it and Drupal 7 is listed as requiring only 5.2); but...
due to this line of code in the 2.x branch in the file views_plugin_pager_infinite_scroll.inc
return t('Infinite Scroll: @parent', ['@parent' => parent::summary_title()]);
2.x will not run with any version of PHP below 5.4
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | views_infinite_scroll-php_53_compatibility-2683835-3.patch | 548 bytes | szeidler |
Comments
Comment #2
sam152 commentedGreat point. I agree this should be fixed.
Comment #3
szeidler commentedHere is a patch, that replaces the array PHP 5.4 shorthand with the usual one.
We use it already internal here on a legacy production server, but it always feels bad in 2016 :)
Comment #4
sam152 commentedComment #6
sam152 commented