<!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] [2733] trunk:
  Moving delete activity actions before the delete to make sure plugins can access activity details
 , before they are deleted.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>2733</dd>
<dt>Author</dt> <dd>apeatling</dd>
<dt>Date</dt> <dd>2010-02-16 12:33:39 +0000 (Tue, 16 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Moving delete activity actions before the delete to make sure plugins can access activity details, before they are deleted.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkbpactivityphp">trunk/bp-activity.php</a></li>
<li><a href="#trunkbpthemesbpdefault_incajaxphp">trunk/bp-themes/bp-default/_inc/ajax.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpactivityphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-activity.php (2732 => 2733)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-activity.php        2010-02-16 09:25:27 UTC (rev 2732)
+++ trunk/bp-activity.php        2010-02-16 12:33:39 UTC (rev 2733)
</span><span class="lines">@@ -347,14 +347,15 @@
</span><span class="cx">         if ( !is_site_admin() &amp;&amp; $activity-&gt;user_id != $bp-&gt;loggedin_user-&gt;id )
</span><span class="cx">                 return false;
</span><span class="cx"> 
</span><ins>+        /* Call the action before the delete so plugins can still fetch information about it */
+        do_action( 'bp_activity_action_delete_activity', $activity_id, $activity-&gt;user_id );
+
</ins><span class="cx">         /* Now delete the activity item */
</span><del>-        if ( bp_activity_delete( array( 'id' =&gt; $activity_id, 'user_id' =&gt; $activity-&gt;user_id  ) ) )
</del><ins>+        if ( bp_activity_delete( array( 'id' =&gt; $activity_id, 'user_id' =&gt; $activity-&gt;user_id ) ) )
</ins><span class="cx">                 bp_core_add_message( __( 'Activity deleted', 'buddypress' ) );
</span><span class="cx">         else
</span><span class="cx">                 bp_core_add_message( __( 'There was an error when deleting that activity', 'buddypress' ), 'error' );
</span><span class="cx"> 
</span><del>-        do_action( 'bp_activity_action_delete_activity', $activity_id );
-
</del><span class="cx">         bp_core_redirect( wp_get_referer() );
</span><span class="cx"> }
</span><span class="cx"> add_action( 'wp', 'bp_activity_action_delete_activity', 3 );
</span></span></pre></div>
<a id="trunkbpthemesbpdefault_incajaxphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-themes/bp-default/_inc/ajax.php (2732 => 2733)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-themes/bp-default/_inc/ajax.php        2010-02-16 09:25:27 UTC (rev 2732)
+++ trunk/bp-themes/bp-default/_inc/ajax.php        2010-02-16 12:33:39 UTC (rev 2733)
</span><span class="lines">@@ -219,7 +219,13 @@
</span><span class="cx">         if ( !is_site_admin() &amp;&amp; $activity-&gt;user_id != $bp-&gt;loggedin_user-&gt;id )
</span><span class="cx">                 return false;
</span><span class="cx"> 
</span><del>-        if ( empty( $_POST['id'] ) || !is_numeric( $_POST['id'] ) || !bp_activity_delete( array( 'id' =&gt; $_POST['id'], 'user_id' =&gt; $activity-&gt;user_id ) ) ) {
</del><ins>+        if ( empty( $_POST['id'] ) || !is_numeric( $_POST['id'] ) )
+                return false;
+
+        /* Call the action before the delete so plugins can still fetch information about it */
+        do_action( 'bp_activity_action_delete_activity', $_POST['id'], $activity-&gt;user_id );
+
+        if ( !bp_activity_delete( array( 'id' =&gt; $_POST['id'], 'user_id' =&gt; $activity-&gt;user_id ) ) ) {
</ins><span class="cx">                 echo '-1&lt;div id=&quot;message&quot; class=&quot;error&quot;&gt;&lt;p&gt;' . __( 'There was a problem when deleting. Please try again.', 'buddypress' ) . '&lt;/p&gt;&lt;/div&gt;';
</span><span class="cx">                 return false;
</span><span class="cx">         }
</span><span class="lines">@@ -246,7 +252,13 @@
</span><span class="cx">         if ( !is_site_admin() &amp;&amp; $comment-&gt;user_id != $bp-&gt;loggedin_user-&gt;id )
</span><span class="cx">                 return false;
</span><span class="cx"> 
</span><del>-        if ( empty( $_POST['id'] ) || !is_numeric( $_POST['id'] ) || !bp_activity_delete_comment( $comment-&gt;item_id, $comment-&gt;id ) ) {
</del><ins>+        if ( empty( $_POST['id'] ) || !is_numeric( $_POST['id'] ) )
+                return false;
+
+        /* Call the action before the delete so plugins can still fetch information about it */
+        do_action( 'bp_activity_action_delete_activity', $_POST['id'], $comment-&gt;user_id );
+
+        if ( !bp_activity_delete_comment( $comment-&gt;item_id, $comment-&gt;id ) ) {
</ins><span class="cx">                 echo '-1&lt;div id=&quot;message&quot; class=&quot;error&quot;&gt;&lt;p&gt;' . __( 'There was a problem when deleting. Please try again.', 'buddypress' ) . '&lt;/p&gt;&lt;/div&gt;';
</span><span class="cx">                 return false;
</span><span class="cx">         }
</span></span></pre>
</div>
</div>

</body>
</html>