<!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] [2668] trunk: Fixes #1884</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>2668</dd>
<dt>Author</dt> <dd>apeatling</dd>
<dt>Date</dt> <dd>2010-02-11 13:13:14 +0000 (Thu, 11 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fixes #1884</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkbpactivityphp">trunk/bp-activity.php</a></li>
<li><a href="#trunkbpxprofilephp">trunk/bp-xprofile.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpactivityphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-activity.php (2667 => 2668)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-activity.php        2010-02-11 12:52:04 UTC (rev 2667)
+++ trunk/bp-activity.php        2010-02-11 13:13:14 UTC (rev 2668)
</span><span class="lines">@@ -17,14 +17,16 @@
</span><span class="cx">                 $charset_collate = &quot;DEFAULT CHARACTER SET $wpdb-&gt;charset&quot;;
</span><span class="cx"> 
</span><span class="cx">         /* Rename the old user activity cached table if needed. */
</span><del>-        if ( $wpdb-&gt;get_var( &quot;SHOW TABLES LIKE '%{$wpdb-&gt;base_prefix}bp_activity_user_activity_cached%'&quot; ) ) {
</del><ins>+        if ( $wpdb-&gt;get_var( &quot;SHOW TABLES LIKE '%{$wpdb-&gt;base_prefix}bp_activity_user_activity_cached%'&quot; ) )
</ins><span class="cx">                 $wpdb-&gt;query( &quot;RENAME TABLE {$wpdb-&gt;base_prefix}bp_activity_user_activity_cached TO {$bp-&gt;activity-&gt;table_name}&quot; );
</span><del>-        }
</del><span class="cx"> 
</span><span class="cx">         /* Rename fields from pre BP 1.2 */
</span><span class="cx">         if ( $wpdb-&gt;get_var( &quot;SHOW TABLES LIKE '%{$bp-&gt;activity-&gt;table_name}%'&quot; ) ) {
</span><del>-                $wpdb-&gt;query( &quot;ALTER TABLE {$bp-&gt;activity-&gt;table_name} CHANGE component_action type varchar(75) NOT NULL&quot; );
-                $wpdb-&gt;query( &quot;ALTER TABLE {$bp-&gt;activity-&gt;table_name} CHANGE component_name component varchar(75) NOT NULL&quot; );
</del><ins>+                if ( $wpdb-&gt;get_var( &quot;SHOW COLUMNS FROM {$bp-&gt;activity-&gt;table_name} LIKE 'component_action'&quot; ) )
+                        $wpdb-&gt;query( &quot;ALTER TABLE {$bp-&gt;activity-&gt;table_name} CHANGE component_action type varchar(75) NOT NULL&quot; );
+
+                if ( $wpdb-&gt;get_var( &quot;SHOW COLUMNS FROM {$bp-&gt;activity-&gt;table_name} LIKE 'component_name'&quot; ) )
+                        $wpdb-&gt;query( &quot;ALTER TABLE {$bp-&gt;activity-&gt;table_name} CHANGE component_name component varchar(75) NOT NULL&quot; );
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         /**
</span></span></pre></div>
<a id="trunkbpxprofilephp"></a>
<div class="modfile"><h4>Modified: trunk/bp-xprofile.php (2667 => 2668)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-xprofile.php        2010-02-11 12:52:04 UTC (rev 2667)
+++ trunk/bp-xprofile.php        2010-02-11 13:13:14 UTC (rev 2668)
</span><span class="lines">@@ -76,13 +76,16 @@
</span><span class="cx">         ) {$charset_collate};&quot;;
</span><span class="cx"> 
</span><span class="cx">         if ( '' == get_site_option( 'bp-xprofile-db-version' ) ) {
</span><del>-                $sql[] = &quot;INSERT INTO {$bp-&gt;profile-&gt;table_name_groups} VALUES ( 1, '&quot; . get_site_option( 'bp-xprofile-base-group-name' ) . &quot;', '', 0 );&quot;;
</del><ins>+                if ( !$wpdb-&gt;get_var( &quot;SELECT id FROM {$bp-&gt;profile-&gt;table_name_groups} WHERE id = 1&quot; ) )
+                        $sql[] = &quot;INSERT INTO {$bp-&gt;profile-&gt;table_name_groups} VALUES ( 1, '&quot; . get_site_option( 'bp-xprofile-base-group-name' ) . &quot;', '', 0 );&quot;;
</ins><span class="cx"> 
</span><del>-                $sql[] = &quot;INSERT INTO {$bp-&gt;profile-&gt;table_name_fields} (
-                                        id, group_id, parent_id, type, name, is_required, can_delete
-                                  ) VALUES (
-                                        1, 1, 0, 'textbox', '&quot; . get_site_option( 'bp-xprofile-fullname-field-name' ) . &quot;', 1, 0
-                                  );&quot;;
</del><ins>+                if ( !$wpdb-&gt;get_var( &quot;SELECT id FROM {$bp-&gt;profile-&gt;table_name_fields} WHERE id = 1&quot; ) ) {
+                        $sql[] = &quot;INSERT INTO {$bp-&gt;profile-&gt;table_name_fields} (
+                                                id, group_id, parent_id, type, name, is_required, can_delete
+                                          ) VALUES (
+                                                1, 1, 0, 'textbox', '&quot; . get_site_option( 'bp-xprofile-fullname-field-name' ) . &quot;', 1, 0
+                                          );&quot;;
+                }
</ins><span class="cx">         }
</span><span class="cx"> 
</span><span class="cx">         require_once( ABSPATH . 'wp-admin/upgrade-functions.php' );
</span></span></pre>
</div>
</div>

</body>
</html>