<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums User Favorites: goebelmasse</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums User Favorites: goebelmasse</description>
<language>en</language>
<pubDate>Fri, 21 Nov 2008 23:58:10 +0000</pubDate>

<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-11894</link>
<pubDate>Sun, 11 Nov 2007 17:10:47 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">11894@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Any news on this issue? I'm constantly editing posts where users enter tags with spaces :(
&#60;/p&#62;</description>
</item>
<item>
<title>goebelmasse on "Wrong user count"</title>
<link>http://bbpress.org/forums/topic/wrong-user-count#post-10315</link>
<pubDate>Mon, 20 Aug 2007 14:22:35 +0000</pubDate>
<dc:creator>goebelmasse</dc:creator>
<guid isPermaLink="false">10315@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh, thank you SamBauers - this is the information missing on this site...&#60;/p&#62;
&#60;p&#62;But as I read at the trac site, the problem is already known. It is fixed by &#60;a href=&#34;http://trac.bbpress.org/changeset/872/branches/0.8?old_path=%2F&#38;#38;format=zip&#34;&#62;changeset 867&#60;/a&#62; - at least in my test environment. I'll upload it to the real server, it seems to be okay and of course it will be better than my quick and dirty &#34;solution&#34;...
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Wrong user count"</title>
<link>http://bbpress.org/forums/topic/wrong-user-count#post-10298</link>
<pubDate>Mon, 20 Aug 2007 03:36:50 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">10298@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I would not have that expectation unless you report a bug in the trac site.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Login with the same details you use here.
&#60;/p&#62;</description>
</item>
<item>
<title>goebelmasse on "Wrong user count"</title>
<link>http://bbpress.org/forums/topic/wrong-user-count#post-10297</link>
<pubDate>Mon, 20 Aug 2007 02:52:45 +0000</pubDate>
<dc:creator>goebelmasse</dc:creator>
<guid isPermaLink="false">10297@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Arrgh! Horrors!&#60;/p&#62;
&#60;p&#62;The problem is caused by the &#60;code&#62;bb_append_meta&#60;/code&#62; invocation in line 2075 of &#60;code&#62;functions.php&#60;/code&#62;.  The query destroys the last &#60;code&#62;SQL_CALC_FOUND_ROWS&#60;/code&#62; and so the count is wrong. A quick and dirty workaround is to change &#60;code&#62;'append_meta' =&#38;gt; false&#60;/code&#62; to &#60;code&#62;'append_meta' =&#38;gt; false&#60;/code&#62; in the &#60;code&#62;$defaults&#60;/code&#62; array in line 2021 of &#60;code&#62;functions.php&#60;/code&#62;.  But this only works if the append_meta argument is not given in the &#60;code&#62;bb_user_search&#60;/code&#62; call.&#60;/p&#62;
&#60;p&#62;Now the problem is more complicated as I suspected earlier. It is a problem for the hackers that make bbPress. No further searching for bugs from me, the problem should be clear. (It is clear enough to me after reading lots of code from other people.) I expect it to be fixed in the next release.
&#60;/p&#62;</description>
</item>
<item>
<title>goebelmasse on "Wrong user count"</title>
<link>http://bbpress.org/forums/topic/wrong-user-count#post-10295</link>
<pubDate>Mon, 20 Aug 2007 01:11:22 +0000</pubDate>
<dc:creator>goebelmasse</dc:creator>
<guid isPermaLink="false">10295@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I found something that can help to fix this bug. In the following I use wordpress_ as prefix for my WP tables.&#60;/p&#62;
&#60;p&#62;My wordpress_usermeta table has 65 rows, and 65 users are displayed now in the bbPress dashboard. It seems to be a wrong SQL statement for querying the number of users.&#60;/p&#62;
&#60;p&#62;Instead of the (by me assumed) &#60;code&#62;select count(*) from wordpress_usermeta&#60;/code&#62; there should be used either &#60;code&#62;select count(*) from wordpress_users&#60;/code&#62; or &#60;code&#62;select count(distinct user_id) from wordpress_usermeta&#60;/code&#62; to get the number of users. &#60;/p&#62;
&#60;p&#62;(Oh yes, I know that there will be a where-clause...)&#60;/p&#62;
&#60;p&#62;I suspect line 2046 in &#60;code&#62;bb-includes/functions.php&#60;/code&#62;, but I'm not familar with the source.
&#60;/p&#62;</description>
</item>
<item>
<title>goebelmasse on "Wrong user count"</title>
<link>http://bbpress.org/forums/topic/wrong-user-count#post-10293</link>
<pubDate>Mon, 20 Aug 2007 00:47:31 +0000</pubDate>
<dc:creator>goebelmasse</dc:creator>
<guid isPermaLink="false">10293@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I use bbPress 0.8.2.1 for a small forum. My user table is shared with a wordpress blog. My bbPress plugins are UseDisplayName 0.7.2, AllowImages 0.7.1, Private Forums 5.0, Forums Moderators 1.0, Google Analytics 0.68. I use the german localisation file, it is a german forum.&#60;/p&#62;
&#60;p&#62;There is a strange bug in the user list. At the moment, 8 users are registered. But the Users/Find admin panel displays a wrong number of users. It says there are 61 users.&#60;/p&#62;
&#60;p&#62;I took a screenshot a few days ago with six users, displayed as 48, if you don't understand the problem, &#60;a href=&#34;http://www.tamagothi.de/wp-content/uploads/2007/08/bbbug.gif&#34;&#62;take a look in my weird numbers&#60;/a&#62;. And I thought that reckoning is something a computer can do.&#60;/p&#62;
&#60;p&#62;Is the problem caused by one of my plugins, or by another reason? And is there a workaround? It is a bug that does not harm me now, but it is a strange one I do not understand.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8732</link>
<pubDate>Fri, 06 Jul 2007 16:40:23 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">8732@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;WordPress uses commas to separate tags, so I wouldn't expect this to change back to spaces for the 1.0 release.&#60;/p&#62;
&#60;p&#62;Perhaps mdawaffe can chip in on this one?
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8709</link>
<pubDate>Thu, 05 Jul 2007 01:11:05 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">8709@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I would say the wording is correct. It's the feature that needs fixing.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8708</link>
<pubDate>Thu, 05 Jul 2007 01:00:18 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">8708@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Has anybody ticketed the incorrect wording?
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8707</link>
<pubDate>Wed, 04 Jul 2007 23:12:57 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">8707@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes, the line says &#34;spaces&#34; which adds to the confusion. BBPress touts a feature which doesn't exist!
&#60;/p&#62;</description>
</item>
<item>
<title>thierryyyyyyy on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8706</link>
<pubDate>Wed, 04 Jul 2007 22:22:24 +0000</pubDate>
<dc:creator>thierryyyyyyy</dc:creator>
<guid isPermaLink="false">8706@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I also have a idea why *every* user put tags space separated.&#60;br /&#62;
I my theme, there is a sentence just before the tag text field that tells users to put spaces ...:&#60;br /&#62;
&#60;code&#62;&#38;lt;label for=&#38;quot;tags-input&#38;quot;&#38;gt;&#38;lt;?php printf(__(&#38;#39;Enter a few words (called &#38;lt;a href=&#38;quot;%s&#38;quot;&#38;gt;tags&#38;lt;/a&#38;gt;) separated by spaces to help someone find your topic:&#38;#39;), get_tag_page_link()) ?&#38;gt;&#60;/code&#62;&#60;br /&#62;
And I think that in the original kakumei...&#60;br /&#62;
and my translation (in french) also ask user for space separated tags.&#60;/p&#62;
&#60;p&#62;to, you can have a &#34;social&#34; bug-fix of this problem : change the cited line in your theme (file = post-form.php). That &#34;social engineering&#34; !
&#60;/p&#62;</description>
</item>
<item>
<title>thierryyyyyyy on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8705</link>
<pubDate>Wed, 04 Jul 2007 22:08:22 +0000</pubDate>
<dc:creator>thierryyyyyyy</dc:creator>
<guid isPermaLink="false">8705@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I feel the previous post is a spam ....&#60;/p&#62;
&#60;p&#62;I'm also experiencing the &#34;tag is very long when space is not the default parameter&#34;.&#60;br /&#62;
If bbPress team still don't want to hear your request, I will perhap's make a plugin to workaround this bug (for me, it is not a feature ...)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8446</link>
<pubDate>Sun, 24 Jun 2007 16:24:53 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">8446@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's not off topic at all to talk about WordPress. I'm saying that the development of the two products is very much done in parallel, so if a decision is made about how tags should be inputed in WordPress (which is likely at this stage as tags are in development in WP), then that will likely affect the bbPress implementation. Perhaps you will get a better answer asking on the developers mailing list or by submitting a bug report on the Trac site.
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8436</link>
<pubDate>Sun, 24 Jun 2007 14:25:51 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">8436@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, but we're getting off topic. At least one other person has noticed this problem with tag separation, hopefully it can be looked at/addressed?
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8432</link>
<pubDate>Sun, 24 Jun 2007 13:20:47 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">8432@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;They're under development. 2.3 will.
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8431</link>
<pubDate>Sun, 24 Jun 2007 13:16:43 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">8431@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Wordpress doesn't have tags...
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8424</link>
<pubDate>Sun, 24 Jun 2007 02:07:55 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">8424@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Tag formatting should be consistent with whatever WordPress does.
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8419</link>
<pubDate>Sun, 24 Jun 2007 00:49:38 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">8419@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Whew, I'm not crazy! :)
&#60;/p&#62;</description>
</item>
<item>
<title>csl749 on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8417</link>
<pubDate>Sat, 23 Jun 2007 19:25:55 +0000</pubDate>
<dc:creator>csl749</dc:creator>
<guid isPermaLink="false">8417@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh, just noticed this with the new version. Space doesn't seem to separate tags any more.
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8416</link>
<pubDate>Sat, 23 Jun 2007 15:45:36 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">8416@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks, fel.&#60;br /&#62;
One question-maybe this is stupid, but why do I seem to be the only one with this issue? No one else has users entering a mix of spaces and commas for tags? No one is getting new posts with separate tags as one long tag?
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8415</link>
<pubDate>Sat, 23 Jun 2007 13:30:26 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">8415@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;code&#62;$tag = str_replace(&#38;#39;,&#38;#39;, &#38;#39;&#38;#39;, $tag);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;(That's not the actual code you need, just an illustration.)&#60;br /&#62;
You could be doing this with a plugin, which is probably preferable as you don't have to hack the core every time. The filter you want is probably &#60;code&#62;bb_tag_sanitize&#60;/code&#62; but I'm not sure. Check &#60;a href=&#34;http://bbpulp.org/wiki/API/filters&#34; rel=&#34;nofollow&#34;&#62;http://bbpulp.org/wiki/API/filters&#60;/a&#62; and &#60;a href=&#34;http://bbpulp.org/wiki/API/actions.&#34; rel=&#34;nofollow&#34;&#62;http://bbpulp.org/wiki/API/actions.&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-8414</link>
<pubDate>Sat, 23 Jun 2007 13:11:42 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">8414@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I updated to .8.2.1 and this issue isn't resolved; in fact, it's worse. I re-hacked the line to read&#60;br /&#62;
&#60;code&#62;$words = explode(&#38;#39; &#38;#39;, $tags);&#60;/code&#62;&#60;br /&#62;
It no longer strips out commas. So a user entering this for tags in a new post:&#60;br /&#62;
&#34;one, two, three four five&#34;&#60;/p&#62;
&#60;p&#62;returns these tags:&#60;br /&#62;
one,&#60;br /&#62;
two,&#60;br /&#62;
three&#60;br /&#62;
four&#60;br /&#62;
five&#60;/p&#62;
&#60;p&#62;Any ideas how to fix this?
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7565</link>
<pubDate>Mon, 21 May 2007 16:44:19 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">7565@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Brackets were just my (apparently needless) way of indicating a text field. Sorry :)&#60;br /&#62;
Flickr works with spaces and quotes, but if you use commas, they are stripped.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7563</link>
<pubDate>Mon, 21 May 2007 15:43:11 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7563@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't understand the system. Spaces are stripped, or alternatively commas are ignored? What's with the square brackets?&#60;br /&#62;
Not that it really matters, I'm just curious about what could be a good system :)
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7561</link>
<pubDate>Mon, 21 May 2007 00:41:34 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">7561@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;For what it's worth, flickr uses quotes for multiple words, so you could enter:&#60;br /&#62;
[foo bar &#34;foobar&#34;] or [foo, bar, &#34;foo bar&#34;] if you like commas. This seems a good way to handle both
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7557</link>
<pubDate>Sun, 20 May 2007 23:22:56 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">7557@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I like the commas because some tags require more than one word and commas allow us to do that.    Having spaces as the seperator makes it impossible without having to add a dash or something else to create multiple word tags.    I was onboard with the commas to seperate before and still +1 on the issue now.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7522</link>
<pubDate>Sat, 19 May 2007 20:27:49 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">7522@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I prefer commas too, but I have to say that nearly *every* post at my site has had tags entered with spaces. For whatever that metric is worth. Seeing as my change accepts both, all is good.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7515</link>
<pubDate>Sat, 19 May 2007 18:55:43 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7515@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't know about spaces being more common, but commas make a lot more sense to me - it's a list of items, and you couldn't have tags consisting of more than one word if you use spaces. The reason it accepts commas is, I think, that you add tags like &#34;tag1, tag2&#34;, it explodes at the space and when the tag's created the punctuation is removed automatically. Since this function isn't pluggable, there's no more elegant way I know to do this.
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7505</link>
<pubDate>Fri, 18 May 2007 21:57:13 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">7505@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, I changed line 1255 in functions.php to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$words = explode(&#38;#39; &#38;#39;, $tags);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;And this seems to allow both spaces AND commas in new post tags. If there's a better way to do this, I'd like to know :)
&#60;/p&#62;</description>
</item>
<item>
<title>Arlo on "Tags not separating"</title>
<link>http://bbpress.org/forums/topic/tags-not-separating#post-7502</link>
<pubDate>Fri, 18 May 2007 12:20:32 +0000</pubDate>
<dc:creator>Arlo</dc:creator>
<guid isPermaLink="false">7502@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am running the latest alpha...it was switched to commas? Can it be switched back? Spaces I think are much more common a tag method than commas (or can it be hacked to acccept both?)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
