Changeset 24246
- Timestamp:
- 05/14/2013 12:37:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r24214 r24246 1115 1115 } 1116 1116 1117 // Display File upload quota on dashboard 1117 /** 1118 * Display file upload quota on dashboard. 1119 * 1120 * Runs on the activity_box_end hook in wp_dashboard_right_now(). 1121 * 1122 * @since 3.0.0 1123 * 1124 * @return bool True if not multisite, user can't upload files, or the space check option is disabled. 1125 */ 1118 1126 function wp_dashboard_quota() { 1119 1127 if ( !is_multisite() || !current_user_can('upload_files') || get_site_option( 'upload_space_check_disabled' ) )
Note: See TracChangeset
for help on using the changeset viewer.