WordPress.org

Make WordPress Core

Opened 3 years ago

Last modified 3 years ago

#11598 new enhancement

code improvements in wp_:dashboard_plugins_output()

Reported by: hakre Owned by:
Priority: normal Milestone: Future Release
Component: General Version: 2.9
Severity: normal Keywords: has-patch
Cc:

Description

Smaller code changes to improve the function. Stumbeled over this while digging into #11597 and #11518.

Attachments (2)

11598.patch (2.6 KB) - added by hakre 3 years ago.
11598.2.patch (5.1 KB) - added by hakre 3 years ago.
Next Iteration

Download all attachments as: .zip

Change History (10)

hakre3 years ago

comment:1 hakre3 years ago

  • Keywords tested added

Tested against current trunk, Plugin listing works flawlessly.

comment:2 hakre3 years ago

Still ready to commit. Can a commiter please take care?

comment:3 follow-up: dd323 years ago

  • Keywords tested removed

Does that do {} while(false); loop work? That will only ever run once from looking at the code.

Continue will just skip the rest of the loop and go straight to the conditional.

Best to leave it as a while(true) { break;} , Theres no need for the do syntax which is out of line with the rest of WordPress

comment:4 Denis-de-Bernardy3 years ago

  • Keywords needs-patch added; has-patch removed

comment:5 nacin3 years ago

  • Milestone changed from 3.0 to 3.1
  • Type changed from defect (bug) to enhancement

comment:6 in reply to: ↑ 3 hakre3 years ago

Replying to dd32:

Does that do {} while(false); loop work? That will only ever run once from looking at the code.

Yes/Yes: Yes, it does work. Second yes is clear I guess. Let me know if not.

Best to leave it as a while(true) { break;} , Theres no need for the do syntax which is out of line with the rest of WordPress

Will adopt the patch accordingly to that feedback.

hakre3 years ago

Next Iteration

comment:7 hakre3 years ago

  • Keywords has-patch added; needs-patch removed
  • Changed the patch according to dd32 feedback regarding the do/while clause.
  • Used in_array() to check for installed slugs instead of the reset/foreach combo[sic!] that is currently in there. Let me know if that's ok or not (that was with substr() compare but I assumed that this implicated problems as well).
  • Description filter is put next to the other filters.
  • Removed unnecessary isset() check after the while(true) loop.
  • Added comments
  • Formatted the code according to the styleguide

I have this running on my testbed against current trunk with no probs.

comment:8 nacin3 years ago

  • Milestone changed from Awaiting Triage to Future Release
Note: See TracTickets for help on using tickets.