Changeset 11447 for trunk/src/bp-core/bp-core-wpabstraction.php
- Timestamp:
- 03/04/2017 06:26:55 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-wpabstraction.php
r10899 r11447 24 24 * @global string $wp_version 25 25 * 26 * @return string$wp_version26 * @return double $wp_version 27 27 */ 28 28 function bp_get_major_wp_version() { … … 161 161 * @param int $user_id ID of the user. Not used. 162 162 * @param bool $all Whether or not to return all. Not used. 163 * @return false163 * @return bool 164 164 */ 165 165 function get_blogs_of_user( $user_id, $all = false ) { … … 181 181 * @param string $value Value. Not used. 182 182 * @param null $deprecated Whether or not deprecated. Not used. 183 * @return true183 * @return bool 184 184 */ 185 185 function update_blog_status( $blog_id, $pref, $value, $deprecated = null ) { … … 267 267 * @param int $offset Optional. Start position for the search. Default: 0. 268 268 * @param string $encoding Optional. Encoding type. Ignored. 269 * @return int| boolPosition of needle in haystack if found, else false.269 * @return int|false Position of needle in haystack if found, else false. 270 270 */ 271 271 function mb_strpos( $haystack, $needle, $offset = 0, $encoding = '' ) { … … 292 292 * @param int $offset Optional. Start position for the search. Default: 0. 293 293 * @param string $encoding Optional. Encoding type. Ignored. 294 * @return intPosition of last needle in haystack if found, else false.294 * @return string|false Position of last needle in haystack if found, else false. 295 295 */ 296 296 function mb_strrpos( $haystack, $needle, $offset = 0, $encoding = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.