<!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] [2755] branches/1.2/bp-blogs.php:
  Fixing bug where private blogs would not be recorded on activation and displayed on a logged in user
 's blog list.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>2755</dd>
<dt>Author</dt> <dd>apeatling</dd>
<dt>Date</dt> <dd>2010-02-21 22:27:20 +0000 (Sun, 21 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fixing bug where private blogs would not be recorded on activation and displayed on a logged in user's blog list.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#branches12bpblogsphp">branches/1.2/bp-blogs.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="branches12bpblogsphp"></a>
<div class="modfile"><h4>Modified: branches/1.2/bp-blogs.php (2754 => 2755)</h4>
<pre class="diff"><span>
<span class="info">--- branches/1.2/bp-blogs.php        2010-02-20 12:45:19 UTC (rev 2754)
+++ branches/1.2/bp-blogs.php        2010-02-21 22:27:20 UTC (rev 2755)
</span><span class="lines">@@ -1,6 +1,6 @@
</span><span class="cx"> &lt;?php
</span><span class="cx"> 
</span><del>-define ( 'BP_BLOGS_DB_VERSION', '2000' );
</del><ins>+define ( 'BP_BLOGS_DB_VERSION', '2015' );
</ins><span class="cx"> 
</span><span class="cx"> /* Define the slug for the component */
</span><span class="cx"> if ( !defined( 'BP_BLOGS_SLUG' ) )
</span><span class="lines">@@ -52,13 +52,13 @@
</span><span class="cx">                          ) {$charset_collate};&quot;;
</span><span class="cx"> 
</span><span class="cx">         $sql[] = &quot;CREATE TABLE {$bp-&gt;blogs-&gt;table_name_blogmeta} (
</span><del>-                        id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY,
-                        blog_id bigint(20) NOT NULL,
-                        meta_key varchar(255) DEFAULT NULL,
-                        meta_value longtext DEFAULT NULL,
-                        KEY blog_id (blog_id),
-                        KEY meta_key (meta_key)
-                   ) {$charset_collate};&quot;;
</del><ins>+                                id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY,
+                                blog_id bigint(20) NOT NULL,
+                                meta_key varchar(255) DEFAULT NULL,
+                                meta_value longtext DEFAULT NULL,
+                                KEY blog_id (blog_id),
+                                KEY meta_key (meta_key)
+                     ) {$charset_collate};&quot;;
</ins><span class="cx"> 
</span><span class="cx"> 
</span><span class="cx">         require_once(ABSPATH . 'wp-admin/upgrade-functions.php');
</span><span class="lines">@@ -332,10 +332,13 @@
</span><span class="cx"> 
</span><span class="cx"> 
</span><span class="cx"> function bp_blogs_record_existing_blogs() {
</span><del>-        global $wpdb;
</del><ins>+        global $bp, $wpdb;
</ins><span class="cx"> 
</span><del>-        $blog_ids = $wpdb-&gt;get_col( $wpdb-&gt;prepare( &quot;SELECT blog_id FROM {$wpdb-&gt;base_prefix}blogs WHERE public = 1 AND mature = 0 AND spam = 0 AND deleted = 0&quot; ) );
</del><ins>+        /* Truncate user blogs table and re-record. */
+        $wpdb-&gt;query( &quot;TRUNCATE TABLE {$bp-&gt;blogs-&gt;table_name}&quot; );
</ins><span class="cx"> 
</span><ins>+        $blog_ids = $wpdb-&gt;get_col( $wpdb-&gt;prepare( &quot;SELECT blog_id FROM {$wpdb-&gt;base_prefix}blogs WHERE mature = 0 AND spam = 0 AND deleted = 0&quot; ) );
+
</ins><span class="cx">         if ( $blog_ids ) {
</span><span class="cx">                 foreach( (array)$blog_ids as $blog_id ) {
</span><span class="cx">                         $users = get_users_of_blog( $blog_id );
</span><span class="lines">@@ -361,6 +364,9 @@
</span><span class="cx">         $name = get_blog_option( $blog_id, 'blogname' );
</span><span class="cx">         $description = get_blog_option( $blog_id, 'blogdescription' );
</span><span class="cx"> 
</span><ins>+        if ( empty( $name ) )
+                return false;
+
</ins><span class="cx">         $recorded_blog = new BP_Blogs_Blog;
</span><span class="cx">         $recorded_blog-&gt;user_id = $user_id;
</span><span class="cx">         $recorded_blog-&gt;blog_id = $blog_id;
</span></span></pre>
</div>
</div>

</body>
</html>