PHP Short Open Tags
-
On line 68 of simple-301-bulk-uploader.php there are three uses of php’s short echo tag <?= which will cause PHP errors when short_open_tag = Off in php’s configuration.
Simple fix, change them to <?php echo so they work when short_open_tag is set to On or Off.
- The topic ‘PHP Short Open Tags’ is closed to new replies.