Changeset 500
- Timestamp:
- 08/14/06 08:59:01 (2 years ago)
- Files:
-
- devel/units/friends/user_friendship_requests.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/units/friends/user_friendship_requests.php
r458 r500 14 14 FROM '.$CFG->prefix.'friends_requests fr LEFT JOIN '.$CFG->prefix.'users u ON u.ident = fr.owner 15 15 WHERE fr.friend = ? ORDER BY u.name ASC',array($page_owner))) { 16 $body .= "<p>" . gettext("The following users would like to add you as a friend. They need your approval to do this (to change this setting, visit the 'account settings' page).") . "</p>";16 $body = "<p>" . gettext("The following users would like to add you as a friend. They need your approval to do this (to change this setting, visit the 'account settings' page).") . "</p>"; 17 17 18 18 foreach($pending_requests as $pending_user) { … … 49 49 50 50 } else { 51 $body .= "<p>" . gettext("You have no pending friendship requests.") . "</p>";51 $body = "<p>" . gettext("You have no pending friendship requests.") . "</p>"; 52 52 } 53 53
