Opened 18 years ago
Closed 18 years ago
#5611 closed enhancement (fixed)
PHPdoc effort for phpdoc fixes in 2.5
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 2.5 | Priority: | normal |
| Severity: | normal | Version: | |
| Component: | Optimization | Keywords: | phpdoc |
| Focuses: | Cc: |
Description
For any mistakes with the phpdoc, patches will be here for WordPress 2.5.
Attachments (1)
Change History (9)
#2
@
18 years ago
When patch is committed, it should be the last external library file that needs file level documentation.
Patch also "fixes" @since information that has 2.4 as the version and moves it to 2.5. The reason for this even though it was added during the 2.4 development was that the since information is for actual releases and the 2.4 was a guess as to which (trunk) version that would be. The current trunk version is 2.5, so all 2.4 @since tags should be 2.5 instead.
#4
@
18 years ago
[6585] contains a change to code:
wp-settings.php - line @39
- unset( $wp_filter, $wp_action, $cache_lastcommentmodified, $cache_lastpostdate ); + unset( $wp_filter, $cache_lastcommentmodified, $cache_lastpostdate );
Is that a problem?
#5
@
18 years ago
No. Once upon a time {{{$wp_action} was added to split filters and actions. When actions once again became part of filters, the variable was left over from that.
$wp_actions is however being used.
First round of phpdoc fixes based off of r6582