All add-ons currently require PHP 7.4 or greater.

On July 4th 2024 PHP 8.2 will be the new minimum requirement for all add-ons. Expect any add-on released after that date to require 8.2 or greater. Some releases may not immediately take advantage of 8.x specific features in PHP, which means you might, be able to continue using new releases in PHP 7.4, however, if you experience an error the first thing you should do is update to PHP 8.2 then create a support ticket if the error persists.

Please read about the changes to BoldMinded add-on licensing.

Ticket: Wrong tab is hidden on entry edit page

Status Resolved
Add-on / Version Publisher Lite 3.9.1
Severity
EE Version 7.2.9

Andrew Gunstone

Feb 13, 2023

When you have more than 9 tabs on an entry page, then the first tab is hidden rather than the Publisher tab. For example, the Publisher tab was “t-11” in one Channel, but it removed “t-1”.

The fix is very simple. In “tab.publisher.php” ... change line 123 from:

var tabId = tabClass.match(/t-(\d)/);

to:

var tabId = tabClass.match(/t-(\d+)/);

Cheers.

#1

BoldMinded (Brian)

Ah, thanks for pointing this out. I’ll make the change.

Login to reply