Changeset 10039 for trunk/src/bp-core/bp-core-wpabstraction.php
- Timestamp:
- 08/09/2015 05:07:56 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-core/bp-core-wpabstraction.php (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-wpabstraction.php
r10012 r10039 2 2 /** 3 3 * WordPress Abstraction. 4 * 5 * @package BuddyPress 4 6 * 5 7 * The functions within this file will detect the version of WordPress you are … … 10 12 */ 11 13 12 // Exit if accessed directly 14 // Exit if accessed directly. 13 15 defined( 'ABSPATH' ) || exit; 14 16 … … 29 31 30 32 /** 31 * Only add MS-specific abstraction functions if WordPress is not in multisite mode 33 * Only add MS-specific abstraction functions if WordPress is not in multisite mode. 32 34 */ 33 35 if ( !is_multisite() ) { … … 129 131 * 130 132 * @param string|bool $prefix Global table prefix. 133 * 131 134 * @return string SQL chunk. 132 135 */ … … 139 142 140 143 /** 141 * Multibyte encoding fallback functions 144 * Multibyte encoding fallback functions. 142 145 * 143 146 * The PHP multibyte encoding extension is not enabled by default. In cases where it is not enabled, … … 152 155 * @param string $str String to be measured. 153 156 * @param string $enc Optional. Encoding type. Ignored. 157 * 154 158 * @return int String length. 155 159 */ … … 177 181 * @param string $haystack String to search in. 178 182 * @param string $needle String to search for. 179 * @param int $offset Optional. Start position for the search. Default: 0.183 * @param int $offset Optional. Start position for the search. Default: 0. 180 184 * @param string $encoding Optional. Encoding type. Ignored. 185 * 181 186 * @return int|bool Position of needle in haystack if found, else false. 182 187 */ … … 201 206 * @param string $haystack String to search in. 202 207 * @param string $needle String to search for. 203 * @param int $offset Optional. Start position for the search. Default: 0.208 * @param int $offset Optional. Start position for the search. Default: 0. 204 209 * @param string $encoding Optional. Encoding type. Ignored. 210 * 205 211 * @return int Position of last needle in haystack if found, else false. 206 212 */
Note: See TracChangeset
for help on using the changeset viewer.