Index: trunk/extensions/SocialProfile/UserRelationship/UserRelationshipClass.php |
— | — | @@ -3,8 +3,8 @@ |
4 | 4 | * Functions for managing relationship data |
5 | 5 | */ |
6 | 6 | class UserRelationship { |
7 | | - private $user_id; |
8 | | - private $user_name; |
| 7 | + public $user_id; |
| 8 | + public $user_name; |
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Constructor |
Index: trunk/extensions/SocialProfile/UserGifts/UserGiftsClass.php |
— | — | @@ -5,8 +5,8 @@ |
6 | 6 | */ |
7 | 7 | class UserGifts { |
8 | 8 | |
9 | | - private $user_id; # Text form (spaces not underscores) of the main part |
10 | | - private $user_name; # Text form (spaces not underscores) of the main part |
| 9 | + public $user_id; # Text form (spaces not underscores) of the main part |
| 10 | + public $user_name; # Text form (spaces not underscores) of the main part |
11 | 11 | |
12 | 12 | /** |
13 | 13 | * Constructor |
Index: trunk/extensions/SocialProfile/SystemGifts/UserSystemGiftsClass.php |
— | — | @@ -4,8 +4,8 @@ |
5 | 5 | */ |
6 | 6 | class UserSystemGifts { |
7 | 7 | |
8 | | - private $user_id; # Text form (spaces not underscores) of the main part |
9 | | - private $user_name; # Text form (spaces not underscores) of the main part |
| 8 | + public $user_id; # Text form (spaces not underscores) of the main part |
| 9 | + public $user_name; # Text form (spaces not underscores) of the main part |
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Constructor |