Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/14/2014 12:50:26 AM (11 years ago)
Author:
boonebgorges
Message:

In update_meta() functions, return integer value if a new metadata is created

Previously, BP update_meta() functions returned true on a successful update
*or* on the successful creation of new metadata. This is not consistent with
WP's update_metadata(), which on the creation of new metadata acts as a wrapper
for add_metadata(), which in turn returns an integer (the ID of the newly
created database row).

This changeset aligns BP's behavior with WP's.

We don't have any tests that directly address the data type returned by these
functions, but we do have a number of assertTrue assertions to verify the
setup of various tests. Where appropriate, these have been changed to the more
generous assertNotEmpty.

See #5399

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-activity/bp-activity-functions.php

    r8131 r8132  
    662662 *        metadata entries with the specified value. Otherwise, update all
    663663 *        entries.
    664  * @return bool True on success, false on failure.
     664 * @return bool|int Returns false on failure. On successful update of existing
     665 *         metadata, returns true. On successful creation of new metadata,
     666 *         returns the integer ID of the new metadata row.
    665667 */
    666668function bp_activity_update_meta( $activity_id, $meta_key, $meta_value, $prev_value = '' ) {
     
    674676    $retval = update_metadata( 'activity', $activity_id, $meta_key, $meta_value, $prev_value );
    675677    remove_filter( 'query', 'bp_filter_metaid_column_name' );
    676 
    677     // Legacy - return true if we fall through to add_metadata()
    678     if ( is_int( $retval ) ) {
    679         $retval = true;
    680     }
    681678
    682679    return $retval;
Note: See TracChangeset for help on using the changeset viewer.