<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[BuddyPress] [2512] trunk/bp-groups/bp-groups-notifications.php:
  Fixes #1657 props DJPaul</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>2512</dd>
<dt>Author</dt> <dd>apeatling</dd>
<dt>Date</dt> <dd>2010-02-01 11:34:10 +0000 (Mon, 01 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fixes #1657 props DJPaul</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkbpgroupsbpgroupsnotificationsphp">trunk/bp-groups/bp-groups-notifications.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpgroupsbpgroupsnotificationsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-groups/bp-groups-notifications.php (2511 => 2512)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-groups/bp-groups-notifications.php        2010-02-01 10:50:48 UTC (rev 2511)
+++ trunk/bp-groups/bp-groups-notifications.php        2010-02-01 11:34:10 UTC (rev 2512)
</span><span class="lines">@@ -23,7 +23,7 @@
</span><span class="cx"> To view the group: %s
</span><span class="cx"> 
</span><span class="cx"> ---------------------
</span><del>-', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ), $group_link );
</del><ins>+', 'buddypress' ), stripslashes( $group-&gt;name ), $group_link );
</ins><span class="cx"> 
</span><span class="cx">                 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
</span><span class="cx"> 
</span><span class="lines">@@ -54,7 +54,7 @@
</span><span class="cx"> 
</span><span class="cx">         // Set up and send the message
</span><span class="cx">         $to = $ud-&gt;user_email;
</span><del>-        $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'Membership request for group: %s', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ) );
</del><ins>+        $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'Membership request for group: %s', 'buddypress' ), stripslashes( $group-&gt;name ) );
</ins><span class="cx"> 
</span><span class="cx"> $message = sprintf( __(
</span><span class="cx"> '%s wants to join the group &quot;%s&quot;.
</span><span class="lines">@@ -67,7 +67,7 @@
</span><span class="cx"> To view %s\'s profile: %s
</span><span class="cx"> 
</span><span class="cx"> ---------------------
</span><del>-', 'buddypress' ), $requesting_user_name, stripslashes( attribute_escape( $group-&gt;name ) ), $group_requests, $requesting_user_name, $profile_link );
</del><ins>+', 'buddypress' ), $requesting_user_name, stripslashes( $group-&gt;name ), $group_requests, $requesting_user_name, $profile_link );
</ins><span class="cx"> 
</span><span class="cx">         $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
</span><span class="cx"> 
</span><span class="lines">@@ -98,24 +98,24 @@
</span><span class="cx">         $to = $ud-&gt;user_email;
</span><span class="cx"> 
</span><span class="cx">         if ( $accepted ) {
</span><del>-                $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'Membership request for group &quot;%s&quot; accepted', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ) );
</del><ins>+                $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'Membership request for group &quot;%s&quot; accepted', 'buddypress' ), stripslashes( $group-&gt;name ) );
</ins><span class="cx">                 $message = sprintf( __(
</span><span class="cx"> 'Your membership request for the group &quot;%s&quot; has been accepted.
</span><span class="cx"> 
</span><span class="cx"> To view the group please login and visit: %s
</span><span class="cx"> 
</span><span class="cx"> ---------------------
</span><del>-', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ), $group_link );
</del><ins>+', 'buddypress' ), stripslashes( $group-&gt;name ), $group_link );
</ins><span class="cx"> 
</span><span class="cx">         } else {
</span><del>-                $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'Membership request for group &quot;%s&quot; rejected', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ) );
</del><ins>+                $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'Membership request for group &quot;%s&quot; rejected', 'buddypress' ), stripslashes( $group-&gt;name ) );
</ins><span class="cx">                 $message = sprintf( __(
</span><span class="cx"> 'Your membership request for the group &quot;%s&quot; has been rejected.
</span><span class="cx"> 
</span><span class="cx"> To submit another request please log in and visit: %s
</span><span class="cx"> 
</span><span class="cx"> ---------------------
</span><del>-', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ), $group_link );
</del><ins>+', 'buddypress' ), stripslashes( $group-&gt;name ), $group_link );
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
</span><span class="lines">@@ -150,7 +150,7 @@
</span><span class="cx">         // Set up and send the message
</span><span class="cx">         $to = $ud-&gt;user_email;
</span><span class="cx"> 
</span><del>-        $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'You have been promoted in the group: &quot;%s&quot;', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ) );
</del><ins>+        $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'You have been promoted in the group: &quot;%s&quot;', 'buddypress' ), stripslashes( $group-&gt;name ) );
</ins><span class="cx"> 
</span><span class="cx">         $message = sprintf( __(
</span><span class="cx"> 'You have been promoted to %s for the group: &quot;%s&quot;.
</span><span class="lines">@@ -158,7 +158,7 @@
</span><span class="cx"> To view the group please visit: %s
</span><span class="cx"> 
</span><span class="cx"> ---------------------
</span><del>-', 'buddypress' ), $promoted_to, stripslashes( attribute_escape( $group-&gt;name ) ), $group_link );
</del><ins>+', 'buddypress' ), $promoted_to, stripslashes( $group-&gt;name ), $group_link );
</ins><span class="cx"> 
</span><span class="cx">         $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
</span><span class="cx"> 
</span><span class="lines">@@ -194,7 +194,7 @@
</span><span class="cx">                 // Set up and send the message
</span><span class="cx">                 $to = $invited_ud-&gt;user_email;
</span><span class="cx"> 
</span><del>-                $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'You have an invitation to the group: &quot;%s&quot;', 'buddypress' ), stripslashes( attribute_escape( $group-&gt;name ) ) );
</del><ins>+                $subject = '[' . get_blog_option( BP_ROOT_BLOG, 'blogname' ) . '] ' . sprintf( __( 'You have an invitation to the group: &quot;%s&quot;', 'buddypress' ), stripslashes( $group-&gt;name ) );
</ins><span class="cx"> 
</span><span class="cx">                 $message = sprintf( __(
</span><span class="cx"> 'One of your friends %s has invited you to the group: &quot;%s&quot;.
</span><span class="lines">@@ -206,11 +206,12 @@
</span><span class="cx"> To view %s\'s profile visit: %s
</span><span class="cx"> 
</span><span class="cx"> ---------------------
</span><del>-', 'buddypress' ), $inviter_name, stripslashes( attribute_escape( $group-&gt;name ) ), $invites_link, $group_link, $inviter_name, $inviter_link );
</del><ins>+', 'buddypress' ), $inviter_name, stripslashes( $group-&gt;name ), $invites_link, $group_link, $inviter_name, $inviter_link );
</ins><span class="cx"> 
</span><span class="cx">                 $message .= sprintf( __( 'To disable these notifications please log in and go to: %s', 'buddypress' ), $settings_link );
</span><span class="cx"> 
</span><span class="cx">                 // Send it
</span><ins>+                var_dump( $to, $subject, $message ); die;
</ins><span class="cx">                 wp_mail( $to, $subject, $message );
</span><span class="cx">         }
</span><span class="cx"> }
</span></span></pre>
</div>
</div>

</body>
</html>