Changeset 6209
- Timestamp:
- 01/06/2017 06:01:09 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/bb-includes/functions.bb-deprecated.php
r6207 r6209 892 892 class WP_User extends BP_User { 893 893 function __construct( $id, $name = '' ) { 894 return parent::BP_User( $id, $name );894 parent::__construct( $id, $name ); 895 895 } 896 896 function WP_User( $id, $name = '' ) { 897 $this->__construct( $id, $name );897 self::__construct( $id, $name ); 898 898 } 899 899 }
Note: See TracChangeset
for help on using the changeset viewer.