<!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] [2032] trunk:
  Removed ajax loader from friend and group search boxes.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>2032</dd>
<dt>Author</dt> <dd>apeatling</dd>
<dt>Date</dt> <dd>2009-10-05 18:05:05 +0000 (Mon, 05 Oct 2009)</dd>
</dl>

<h3>Log Message</h3>
<pre>Removed ajax loader from friend and group search boxes.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkbpcoredeprecatedbpcoredeprecatedphp">trunk/bp-core/deprecated/bp-core-deprecated.php</a></li>
<li><a href="#trunkbpforumsphp">trunk/bp-forums.php</a></li>
<li><a href="#trunkbpfriendsbpfriendstemplatetagsphp">trunk/bp-friends/bp-friends-templatetags.php</a></li>
<li><a href="#trunkbpgroupsbpgroupstemplatetagsphp">trunk/bp-groups/bp-groups-templatetags.php</a></li>
<li><a href="#trunkbpgroupsphp">trunk/bp-groups.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpcoredeprecatedbpcoredeprecatedphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-core/deprecated/bp-core-deprecated.php (2031 => 2032)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-core/deprecated/bp-core-deprecated.php        2009-10-05 18:03:50 UTC (rev 2031)
+++ trunk/bp-core/deprecated/bp-core-deprecated.php        2009-10-05 18:05:05 UTC (rev 2032)
</span><span class="lines">@@ -757,6 +757,10 @@
</span><span class="cx"> function bp_core_get_buddypress_themes() {
</span><span class="cx">         global $wp_themes;
</span><span class="cx">         
</span><ins>+        /* If we are using a BuddyPress 1.1+ theme ignore this. */
+        if ( !file_exists( WP_CONTENT_DIR . '/bp-themes' ) )
+                return false;
+        
</ins><span class="cx">         /* Remove the cached WP themes first */
</span><span class="cx">         $wp_existing_themes = &amp;$wp_themes;
</span><span class="cx">         $wp_themes = null;
</span></span></pre></div>
<a id="trunkbpforumsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-forums.php (2031 => 2032)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-forums.php        2009-10-05 18:03:50 UTC (rev 2031)
+++ trunk/bp-forums.php        2009-10-05 18:05:05 UTC (rev 2032)
</span><span class="lines">@@ -167,6 +167,7 @@
</span><span class="cx">         do_action( 'bbpress_init' );
</span><span class="cx"> 
</span><span class="cx">         $query = new BB_Query( 'topic', 'topic_id=' . $topic_id ); 
</span><ins>+
</ins><span class="cx">         return $query-&gt;results[0];
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -202,7 +203,7 @@
</span><span class="cx">                 
</span><span class="cx">         if ( !$topic_id = bb_insert_topic( array( 'topic_title' =&gt; stripslashes( $topic_title ), 'topic_slug' =&gt; $topic_slug, 'topic_poster' =&gt; $topic_poster, 'topic_poster_name' =&gt; $topic_poster_name, 'topic_last_poster' =&gt; $topic_last_poster, 'topic_last_poster_name' =&gt; $topic_last_poster_name, 'topic_start_time' =&gt; $topic_start_time, 'topic_time' =&gt; $topic_time, 'topic_open' =&gt; $topic_open, 'forum_id' =&gt; (int)$forum_id, 'tags' =&gt; $topic_tags ) ) )
</span><span class="cx">                 return false;
</span><del>-        
</del><ins>+
</ins><span class="cx">         /* Now insert the first post. */
</span><span class="cx">         if ( !bp_forums_insert_post( array( 'topic_id' =&gt; $topic_id, 'post_text' =&gt; $topic_text, 'post_time' =&gt; $topic_time, 'poster_id' =&gt; $topic_poster ) ) )
</span><span class="cx">                 return false;
</span></span></pre></div>
<a id="trunkbpfriendsbpfriendstemplatetagsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-friends/bp-friends-templatetags.php (2031 => 2032)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-friends/bp-friends-templatetags.php        2009-10-05 18:03:50 UTC (rev 2031)
+++ trunk/bp-friends/bp-friends-templatetags.php        2009-10-05 18:05:05 UTC (rev 2032)
</span><span class="lines">@@ -303,7 +303,7 @@
</span><span class="cx"> ?&gt;
</span><span class="cx">         &lt;form action=&quot;&lt;?php echo $action ?&gt;&quot; id=&quot;friend-search-form&quot; method=&quot;post&quot;&gt;
</span><span class="cx"> 
</span><del>-                &lt;label for=&quot;friend-search-box&quot; id=&quot;friend-search-label&quot;&gt;&lt;?php echo $label ?&gt; &lt;span class=&quot;ajax-loader&quot;&gt;&lt;/span&gt;&lt;/label&gt;
</del><ins>+                &lt;label for=&quot;friend-search-box&quot; id=&quot;friend-search-label&quot;&gt;&lt;?php echo $label ?&gt;&lt;/label&gt;
</ins><span class="cx">                 &lt;input type=&quot;search&quot; name=&quot;friend-search-box&quot; id=&quot;friend-search-box&quot; value=&quot;&lt;?php echo $value ?&gt;&quot;&lt;?php echo $disabled ?&gt; /&gt;
</span><span class="cx">                 
</span><span class="cx">                 &lt;?php wp_nonce_field( 'friends_search', '_wpnonce_friend_search' ) ?&gt;
</span></span></pre></div>
<a id="trunkbpgroupsbpgroupstemplatetagsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-groups/bp-groups-templatetags.php (2031 => 2032)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-groups/bp-groups-templatetags.php        2009-10-05 18:03:50 UTC (rev 2031)
+++ trunk/bp-groups/bp-groups-templatetags.php        2009-10-05 18:05:05 UTC (rev 2032)
</span><span class="lines">@@ -728,7 +728,7 @@
</span><span class="cx">         $name = 'group-filter-box';
</span><span class="cx"> ?&gt;
</span><span class="cx">         &lt;form action=&quot;&lt;?php echo $action ?&gt;&quot; id=&quot;group-search-form&quot; method=&quot;post&quot;&gt;
</span><del>-                &lt;label for=&quot;&lt;?php echo $name ?&gt;&quot; id=&quot;&lt;?php echo $name ?&gt;-label&quot;&gt;&lt;?php echo $label ?&gt; &lt;span class=&quot;ajax-loader&quot;&gt;&lt;/span&gt;&lt;/label&gt;
</del><ins>+                &lt;label for=&quot;&lt;?php echo $name ?&gt;&quot; id=&quot;&lt;?php echo $name ?&gt;-label&quot;&gt;&lt;?php echo $label ?&gt;&lt;/label&gt;
</ins><span class="cx">                 &lt;input type=&quot;search&quot; name=&quot;&lt;?php echo $name ?&gt;&quot; id=&quot;&lt;?php echo $name ?&gt;&quot; value=&quot;&lt;?php echo $value ?&gt;&quot;&lt;?php echo $disabled ?&gt; /&gt;
</span><span class="cx">         
</span><span class="cx">                 &lt;?php wp_nonce_field( 'group-filter-box', '_wpnonce_group_filter' ) ?&gt;
</span></span></pre></div>
<a id="trunkbpgroupsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-groups.php (2031 => 2032)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-groups.php        2009-10-05 18:03:50 UTC (rev 2031)
+++ trunk/bp-groups.php        2009-10-05 18:05:05 UTC (rev 2032)
</span><span class="lines">@@ -604,7 +604,7 @@
</span><span class="cx">                 $topic_slug = $bp-&gt;action_variables[1];
</span><span class="cx">                 $topic_id = bp_forums_get_topic_id_from_slug( $topic_slug );
</span><span class="cx">                 $forum_id = groups_get_groupmeta( $bp-&gt;groups-&gt;current_group-&gt;id, 'forum_id' );
</span><del>-                
</del><ins>+
</ins><span class="cx">                 if ( $topic_slug &amp;&amp; $topic_id ) {
</span><span class="cx"> 
</span><span class="cx">                         /* Posting a reply */
</span><span class="lines">@@ -2137,7 +2137,7 @@
</span><span class="cx">         
</span><span class="cx">         if ( empty( $topic_title ) || empty( $topic_text ) )
</span><span class="cx">                 return false;
</span><del>-        
</del><ins>+                
</ins><span class="cx">         if ( $topic_id = bp_forums_new_topic( array( 'topic_title' =&gt; $topic_title, 'topic_text' =&gt; $topic_text, 'topic_tags' =&gt; $topic_tags, 'forum_id' =&gt; $forum_id ) ) ) {
</span><span class="cx">                 $topic = bp_forums_get_topic_details( $topic_id );
</span><span class="cx"> 
</span><span class="lines">@@ -2154,7 +2154,7 @@
</span><span class="cx">                 ) );
</span><span class="cx">                 
</span><span class="cx">                 do_action( 'groups_new_forum_topic', $bp-&gt;groups-&gt;current_group-&gt;id, &amp;$topic );
</span><del>-                
</del><ins>+
</ins><span class="cx">                 return $topic;
</span><span class="cx">         }
</span><span class="cx">                                         
</span></span></pre>
</div>
</div>

</body>
</html>