Changeset 9315 for trunk/src/bp-core/bp-core-functions.php
- Timestamp:
- 01/08/2015 09:43:47 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/bp-core/bp-core-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-functions.php
r9308 r9315 113 113 if ( isset( $index->' . $key . ' ) ) { 114 114 $values[ $indexi ] = $index->' . $key . '; 115 } else if ( isset( $index["' . $key . '"] ) ) {115 } elseif ( isset( $index["' . $key . '"] ) ) { 116 116 $values[ $indexi ] = $index["' . $key . '"]; 117 117 } … … 127 127 if ( 0 > $cmp ) { 128 128 $retval = -1; 129 } else if ( 0 < $cmp ) {129 } elseif ( 0 < $cmp ) { 130 130 $retval = 1; 131 131 } else {
Note: See TracChangeset
for help on using the changeset viewer.