#24314 closed enhancement (fixed)
Documentation Improvement wp_dashboard_quota
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | 3.6 | Priority: | normal |
| Severity: | trivial | Version: | 3.6 |
| Component: | Inline Docs | Keywords: | has-patch needs-codex |
| Focuses: | Cc: |
Description (last modified by )
https://github.com/h4ck3rm1k3/WordPress/commit/91ff44ef6438f6e095666e15e901339ea05b0f75
wp-admin/includes/dashboard.php
@@ -1114,7 +1114,13 @@ function wp_dashboard_rss_control( $widget_id, $form_inputs = array() ) {
wp_widget_rss_form( $widget_options[$widget_id], $form_inputs );
}
-// Display File upload quota on dashboard
+
+/**
+ * Display File upload quota on dashboard.
+ * Called via action activity_box_end which is called by do_action from the function wp_dashboard_right_now
+ * that is called indirectly from wp_add_dashboard_widget to the dashboard_right_now.
+ */
Attachments (1)
Change History (5)
Note: See
TracTickets for help on using
tickets.
24314.diff incorporates a more succinct version of @h4ck3rm1k3's text and adds the @since and @return.