Make WordPress Core

Changeset 14437


Ignore:
Timestamp:
05/04/2010 08:41:46 AM (15 years ago)
Author:
nacin
Message:

@since for some new ms functions re: upload file size limits. see #12853.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/ms.php

    r14420 r14437  
    394394 * Determines if there is any upload space left in the current blog's quota.
    395395 *
     396 * @since 3.0.0
    396397 * @return bool True if space is available, false otherwise.
    397398 */
     
    406407}
    407408
     409/*
     410 * @since 3.0.0
     411 */
    408412function upload_size_limit_filter( $size ) {
    409413    return min( $size, get_upload_space_available() );
Note: See TracChangeset for help on using the changeset viewer.