<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>Feedback - Vanilla Community</title>
      <link>http://vanillaforums.org/categories/feedback/feed.rss</link>
      <pubDate>Thu, 23 May 2013 23:25:44 +0000</pubDate>
         <description>Feedback - Vanilla Community</description>
   <language>en-CA</language>
   <atom:link href="http://vanillaforums.org/categories/feedback/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>FileUpload "Insert Image" causing http/https problems</title>
      <link>http://vanillaforums.org/discussion/23819/fileupload-insert-image-causing-httphttps-problems</link>
      <pubDate>Thu, 23 May 2013 15:49:31 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>MasterOne</dc:creator>
      <guid isPermaLink="false">23819@/discussions</guid>
      <description><![CDATA[<p>When you upload an image and click "Insert Image" it inserts</p>

<p><code>&lt;img src="<a href="http://www.example.tld/uploads/FileUpload/.." target="_blank" rel="nofollow">http://www.example.tld/uploads/FileUpload/..</a>." /&gt;</code></p>

<p>or</p>

<p><code>&lt;img src="<a href="https://www.example.tld/uploads/FileUpload/.." target="_blank" rel="nofollow">https://www.example.tld/uploads/FileUpload/..</a>." /&gt;</code></p>

<p>(depending if you are accessing the forum by http or https) into the text box, however it's better to have it insert only</p>

<p><code>&lt;img src="/uploads/FileUpload/..." /&gt;</code></p>

<p>not not have is cause any issues afterwards when accessing the site either by http or https.</p>

<p>I thought there is an easy fix, I tracked it down to line 507+ of <code>plugins/FileUpload/js/fileupload.js</code>:</p>

<pre><code>// Add "insert image" button
if (JResponse.MediaResponse.FinalImageLocation != '') {
  var ImageAnchor = jQuery(FileListing.find('a.InsertImage'));
  ImageAnchor.attr('href', JResponse.MediaResponse.FinalImageLocation);
  ImageAnchor.show();
  ImageAnchor.live('click', function() {
    var insertimg = '&lt;img src="'+ImageAnchor.attr('href')+'" /&gt;';
    // Test if we're working with CLEditor
    var wysiwyg = jQuery(FileListing.parents('form').find('iframe'));
      if (wysiwyg) {
        // Insert into WYSIWYG iframe
        var editorbox = wysiwyg.contents().find('body');
        editorbox.html(function(index, oldhtml) { return oldhtml+insertimg });
      }
      else {
        // Normal textarea (no WYSIWYG)
        var txtbox = jQuery(FileListing.parents('form').find('textarea'));
        txtbox.val(txtbox.val()+insertimg);
      }
      return false;
   });
}
</code></pre>

<p>but me not knowing JavaScript couldn't solve that problem.</p>

<p>Anyone any idea for a quick patch?</p>
]]></description>
   </item>
   <item>
      <title>Split/Merge FE 1.01 on Vanilla 2.1b1: Move Comment not working</title>
      <link>http://vanillaforums.org/discussion/23816/splitmerge-fe-1-01-on-vanilla-2-1b1-move-comment-not-working</link>
      <pubDate>Thu, 23 May 2013 09:41:04 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>MasterOne</dc:creator>
      <guid isPermaLink="false">23816@/discussions</guid>
      <description><![CDATA[<p>I just discovered a problem with Split/Merge FE on 2.1b1. When I select a comment, and try to move it, I get just a small empty overlay box at the top of the comment besides the tick box:</p>

<p><img src="http://cdn.vanillaforums.com/www.vanillaforums.org/FileUpload/2c/656140af6131f67647f0c84571560e.png" alt="image" /></p>

<p>I've looked through <code>class.splitmergefe.plugin.php</code>, but still being a Vanilla n00b I have no idea what could be wrong.</p>
]]></description>
   </item>
   <item>
      <title>Adding indexphoto to Search Results...</title>
      <link>http://vanillaforums.org/discussion/23812/adding-indexphoto-to-search-results</link>
      <pubDate>Wed, 22 May 2013 18:14:41 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>peregrine</dc:creator>
      <guid isPermaLink="false">23812@/discussions</guid>
      <description><![CDATA[<p>in answer to:
<a rel="nofollow" href="/profile/charliepratt">@charliepratt</a> 
[Index Photos addon] How do I add user photos in the search results?</p>

<p><a href="http://vanillaforums.org/discussion/comment/183570/#Comment_183570" target="_blank" rel="nofollow">http://vanillaforums.org/discussion/comment/183570/#Comment_183570</a></p>

<p>easier to find when properly added to plugin that it was related to.</p>

<pre><code>     public function SearchController_BeforeItemContent_Handler($Sender) { 
       $RowName = $Sender-&gt;EventArguments['Row'];
       $OP = UserBuilder($RowName);
       echo UserPhoto($OP);

       }
</code></pre>

<p>you'll have to style with css accordingly - but this will add user photo to search results.</p>
]]></description>
   </item>
   <item>
      <title>Feedback for plugin</title>
      <link>http://vanillaforums.org/discussion/23781/feedback-for-plugin</link>
      <pubDate>Sun, 19 May 2013 18:15:33 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>vrijvlinder</dc:creator>
      <guid isPermaLink="false">23781@/discussions</guid>
      <description><![CDATA[<p>I like this plugin however there are a couple things I can suggest .</p>

<p>The version requirements causes a fatal error changing it to</p>

<p>'RequiredApplications' =&gt; array('Vanilla' =&gt; '2.0.18'),</p>

<p>fixes it</p>

<p>then the style needs some changes. Keep in mind people may have other add ons that also take the same space in the index. So making changes to the data list and the meta is not advisable . I recommend when styling plugins, to try and affect the rest of the stuff the least by only styling the parts pertaining to the plugin.</p>

<p>Here is a new style sheet I made for myself to make this play better with the rest of the stuff in the index.</p>

<pre>


.StatsBox {
background:#666;
padding: 2px;
float: right;
height: 10px;
text-align: left;
font-weight: bold;
font-size: 10px;
line-height: 0.1;
vertical-align: top;
}

.StatsBox span {
display: inline-block;
font-weight: bold;
font-size: 7pt;
line-height: 1;
padding: 0;
min-width: 18px;
}

.StatsBox, .StatsBox a {
color: #fff;
display: inline-block;
font-size: 7pt;
vertical-align: middle;
position: relative;
font-weight: bold;
text-shadow: 0 1px 0 #000;
}
.StatsBox a:hover {
font-size: 7pt!important;
color: red!important;
text-shadow: 0 1px 0 #000;
}
.ViewsBox {
background:#222;
height: 10px;
width: auto;
}

.FollowsBox {
background: #666;
}

div.Meta span.CommentCount {
    display: none;
}

</pre>

<p>Thanks for the plugin , I had no idea of the view count until now lol :)</p>
]]></description>
   </item>
   <item>
      <title>Issues with forum loading</title>
      <link>http://vanillaforums.org/discussion/23801/issues-with-forum-loading</link>
      <pubDate>Tue, 21 May 2013 16:01:28 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>theycallmechristophe</dc:creator>
      <guid isPermaLink="false">23801@/discussions</guid>
      <description><![CDATA[<p>Hi there, our forum is forum.herebemonstersgame.com and we've been having issues all day, members and mods alike. We're getting over capacity messages, being spontaneously logged out and also getting the following error:</p>

<p>Error 503 Service Unavailable</p>

<p>Service Unavailable
Guru Meditation:</p>

<p>XID: 1591595413</p>

<p>Varnish cache server</p>

<p>Is there an issue that we should know about?</p>
]]></description>
   </item>
   <item>
      <title>Slow plugins list</title>
      <link>http://vanillaforums.org/discussion/23795/slow-plugins-list</link>
      <pubDate>Tue, 21 May 2013 01:09:24 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>charliepratt</dc:creator>
      <guid isPermaLink="false">23795@/discussions</guid>
      <description><![CDATA[<p>I'd love to start forming a repository of some of Vanilla's notoriously slow plugins.</p>
]]></description>
   </item>
   <item>
      <title>This plugin is Fixed and works</title>
      <link>http://vanillaforums.org/discussion/23711/this-plugin-is-fixed-and-works</link>
      <pubDate>Mon, 13 May 2013 18:52:41 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>vrijvlinder</dc:creator>
      <guid isPermaLink="false">23711@/discussions</guid>
      <description><![CDATA[<p>I went ahead and fixed this plugin , it now works on 2.1 also. I fixed the js which was all messed up too.</p>

<p>The way this works is you post the link to the mp3 file into the discussion as you would any other link and this makes a small but functional button next to the file so it can be played on the page. It also ads the play button to the attachment thumbnail of the mp3 linked file if you upload the mp3 content to your forum.</p>

<p>you can see it working here</p>

<p><a href="http://www.vrijvlinder.com/forum/discussion/4/embedding-objects#Item_5" target="_blank" rel="nofollow">http://www.vrijvlinder.com/forum/discussion/4/embedding-objects#Item_5</a></p>

<p>just install this version I attached as you would any other plugin and enable in the dashboard.</p>
]]></description>
   </item>
   <item>
      <title>Issues with 2.0.18</title>
      <link>http://vanillaforums.org/discussion/17656/issues-with-2-0-18</link>
      <pubDate>Fri, 04 Nov 2011 13:00:47 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>Shmizzle</dc:creator>
      <guid isPermaLink="false">17656@/discussions</guid>
      <description><![CDATA[Hi, I just updated to 2.0.18 and the latest version of this addon and am experiencing some issues with it. Here's my EmoticonMatch array:<br /><br /><code>$EmoticonMatch = array(&quot;[:0]&quot; =&gt; &quot;gasp.gif&quot;,);</code><br /><br />It works sometimes, but if there's no space on both sides of the [:0], the emoticon isn't replaced with an image. So if you have something like:<br /><br /><code>Hey![:0]</code><br /><br />or <br /><br /><code>h[:0]</code><br /><br />It doesn't work.<br /><br />Also, if there's a greater than / less than sign in the post prior to the emoticon, things get all screwey and the plugin appears to insert broken HTML. For example, if you make a post like this:<br /><br /><code>&gt; [:0]</code><br /><br />or...<br /><br /><code>blah blah blah &gt;<br />blah blah<br />blah blah<br />blah<br />[:0]</code><br /><br />Then broken HTML is inserted, unfortunately.<br /><br />Would love to see both these things fixed, it's the only thing preventing me from upgrading to 2.0.18 on my main forum!]]></description>
   </item>
   <item>
      <title>Vanilla XSS Vulnerability</title>
      <link>http://vanillaforums.org/discussion/23771/vanilla-xss-vulnerability</link>
      <pubDate>Sat, 18 May 2013 16:53:42 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>ConnorM</dc:creator>
      <guid isPermaLink="false">23771@/discussions</guid>
      <description><![CDATA[<p>Hello, I have recently discovered a vulneribility which probably affects all versions of vanilla.</p>

<p>You are currently unable to send IFRAME tags in messages. Yet you are able to send OBJECT tags. This can be abused and may lead to pages being redirected to other websites.</p>

<p>Here's an example:</p>

<p></p>

<p>Hope this gets fixed before abuse occurs.</p>

<p>Thanks,</p>

<p>ConnorM</p>
]]></description>
   </item>
   <item>
      <title>Bug report: deleting user/blanking content</title>
      <link>http://vanillaforums.org/discussion/23788/bug-report-deleting-userblanking-content</link>
      <pubDate>Mon, 20 May 2013 10:16:16 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>dneary</dc:creator>
      <guid isPermaLink="false">23788@/discussions</guid>
      <description><![CDATA[<p>Hi,</p>

<p>I just tried to delete an old test user while blanking content, and got the following error:</p>

<p><code>You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version
for the right syntax to use near 'c from GDN_Comment c join GDN_Discussion d on c.DiscussionID = d.DiscussionID wh'
at line 1|Gdn_Database|Query|delete GDN_Comment c from GDN_Comment c join GDN_Discussion d on c.DiscussionID = d.DiscussionID where d.InsertUserID = :dInsertUserID</code></p>

<p>Looks like there's an errant "c" in there for the field name to be deleted from the table.</p>

<p>Cheers,<br />
Dave.</p>
]]></description>
   </item>
   <item>
      <title>Tag Cloud plugin ?!</title>
      <link>http://vanillaforums.org/discussion/20373/tag-cloud-plugin</link>
      <pubDate>Thu, 31 May 2012 09:12:45 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>leafmonster</dc:creator>
      <guid isPermaLink="false">20373@/discussions</guid>
      <description><![CDATA[<p>Would love to have some folks test out this addon, my first.  I'm not the savviest developer, but wanted to give something back to this beautiful project/community.  It's not much, but I think it's something a bunch of folks have been looking for.</p>

<p>I actually learned quite a bit building this trivial little plugin.  Everything is done client-side, requiring the retrieval of two small .js scripts and one .css.  Maybe it could be done with less overhead, I dunno.  I suppose I could merge the two scripts.</p>

<p>Anyway, if folks are finding this useful, I might add some configurable styling options or something.</p>

<p>Feedback?  Bugs?</p>
]]></description>
   </item>
   <item>
      <title>Feedback Issues Questions for Galleries Plugin</title>
      <link>http://vanillaforums.org/discussion/23616/feedback-issues-questions-for-galleries-plugin</link>
      <pubDate>Tue, 30 Apr 2013 02:23:30 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>vrijvlinder</dc:creator>
      <guid isPermaLink="false">23616@/discussions</guid>
      <description><![CDATA[<p>Please post any feedback about this plugin here, I hope you enjoy it and is useful to you.</p>
]]></description>
   </item>
   <item>
      <title>I want just the text to be displayed</title>
      <link>http://vanillaforums.org/discussion/23645/i-want-just-the-text-to-be-displayed</link>
      <pubDate>Sat, 04 May 2013 06:17:07 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>indianfootynet</dc:creator>
      <guid isPermaLink="false">23645@/discussions</guid>
      <description><![CDATA[<p>If I hide all the images, the whole marquee disappears. How can I set it to text-only. Also, is there a way to change the text format?</p>
]]></description>
   </item>
   <item>
      <title>Bulk Edit Plugin Wishlist</title>
      <link>http://vanillaforums.org/discussion/23746/bulk-edit-plugin-wishlist</link>
      <pubDate>Thu, 16 May 2013 14:10:19 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>hgtonight</dc:creator>
      <guid isPermaLink="false">23746@/discussions</guid>
      <description><![CDATA[<p>Hey guys + gals!</p>

<p>I have been working on a new plugin called <strong>Bulk Edit</strong>. It aims to add the ability to act on a bunch of users at once. I need help defining what actions to implement.</p>

<p>I came up with:
* Add roles
* Remove roles
* Remove users
* Set roles (set the roles for users to this <em>exact</em> set of roles)</p>

<p><a rel="nofollow" href="/profile/peak">@peak</a> came up with:
* Reset password</p>

<p>What other actions do you guys think would be nice?</p>
]]></description>
   </item>
   <item>
      <title>测试</title>
      <link>http://vanillaforums.org/discussion/23730/%E6%B5%8B%E8%AF%95</link>
      <pubDate>Wed, 15 May 2013 04:09:19 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>hezhiqiang</dc:creator>
      <guid isPermaLink="false">23730@/discussions</guid>
      <description><![CDATA[<p>测试一下，哈哈!</p>
]]></description>
   </item>
   <item>
      <title>Tweak for Magic Addon</title>
      <link>http://vanillaforums.org/discussion/23728/tweak-for-magic-addon</link>
      <pubDate>Tue, 14 May 2013 20:26:48 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>charliepratt</dc:creator>
      <guid isPermaLink="false">23728@/discussions</guid>
      <description><![CDATA[<p>I replaced this on line 15 —</p>

<p>Original:
<code>private $RegularImg = '/((http|ftp)\:\/\/)?([A-Za-z0-9\-\_\.]+)([\/\-\_A-Za-z0-9]+)?(\.(jpg|JPG|jpeg|JPEG|png|PNG|gif|GIF))/';</code></p>

<p>With: 
<code>private $RegularImg = '/((http|ftp)\:\/\/)?([A-Za-z0-9\-\_\.]+)([\/\%\-\_A-Za-z0-9]+)?(\.(jpg|JPG|jpeg|JPEG|png|PNG|gif|GIF))/';</code></p>

<p>It seemed to fix the problem with images not appearing when containing a % sign. Not sure if this is kosher, but it works for me.</p>
]]></description>
   </item>
   <item>
      <title>Whats new in Nebula v5?</title>
      <link>http://vanillaforums.org/discussion/23703/whats-new-in-nebula-v5</link>
      <pubDate>Sat, 11 May 2013 23:57:25 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>aery</dc:creator>
      <guid isPermaLink="false">23703@/discussions</guid>
      <description><![CDATA[<p>For quite a long time, I was unable to contribute and fix errors because of my studies. Finally, I got enough time to rebuild the theme. Here are the highlights</p>

<p><strong>#.</strong> More spacing. Looks more pleasant to eyes.</p>

<p><strong>#.</strong> Improved gray color theme and background.</p>

<p><strong>#.</strong> Fixed 'Option' position on hover.</p>

<p><strong>#.</strong> Fixed 'All Categories' view.</p>

<p><strong>#.</strong> Fixed comment meta information position.</p>

<p><strong>#.</strong> More than 50 CSS improvements.</p>

<p><strong>#.</strong> Fixed some problems with new plugins.</p>

<p><strong>#.</strong> Included branding tagline.</p>

<p><strong>#.</strong> New Footer.</p>

<p><strong>#.</strong> New buttons.</p>

<p><strong>#.</strong> Works till Vanilla Version 2.0.18.4</p>

<p><strong>#.</strong> Find screenshots <a rel="nofollow" href="http://imgur.com/a/6VEHH">here</a>.</p>
]]></description>
   </item>
   <item>
      <title>Continuing clarity issue on extension licensing.</title>
      <link>http://vanillaforums.org/discussion/23707/continuing-clarity-issue-on-extension-licensing</link>
      <pubDate>Mon, 13 May 2013 10:03:23 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>x00</dc:creator>
      <guid isPermaLink="false">23707@/discussions</guid>
      <description><![CDATA[<p>Now previously I made a post regarding this which probably wasn't in the best of tack, and might of given the wrong impression I'm not about contributing, or I really wanted to impose licensing, which is not my desire at all.</p>

<p>I have always been under the impression, and I got this from the team, that extensions can be licensed (within reason) under different regimes. Unfortunately brought to light but recent lawsuits, implicitly at least this is not the GPL position.</p>

<p>I understand that if explicitly stated it should be fine to allow this. However I'm not a fan of the unwritten rule in cases like this, as wordpress for instance is highly selectively applying these rules. It would be good if we can get some official clarification if that is not too much trouble.</p>

<p>I think it would be sad to miss out on an economy of extensions. It is not about not releasing code, or being too restrictive. On the contrary.</p>

<p>If GPL didn't have these thorny issues that are little discussed, I wouldn't even have made the suggestion to switch, however it shouldn't have be necessary at all.</p>
]]></description>
   </item>
   <item>
      <title>The users on display is at the top of discussions.</title>
      <link>http://vanillaforums.org/discussion/23715/the-users-on-display-is-at-the-top-of-discussions</link>
      <pubDate>Tue, 14 May 2013 06:45:14 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>DenisS</dc:creator>
      <guid isPermaLink="false">23715@/discussions</guid>
      <description><![CDATA[<p>The users on display is at the top of discussions not the bottom and the box is very large. How can i alter this?</p>
]]></description>
   </item>
   <item>
      <title>Paypal</title>
      <link>http://vanillaforums.org/discussion/23717/paypal</link>
      <pubDate>Tue, 14 May 2013 09:14:21 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>Trent</dc:creator>
      <guid isPermaLink="false">23717@/discussions</guid>
      <description><![CDATA[<p>This</p>
]]></description>
   </item>
   <item>
      <title>Paypal Shipping Address Setting</title>
      <link>http://vanillaforums.org/discussion/23718/paypal-shipping-address-setting</link>
      <pubDate>Tue, 14 May 2013 09:18:08 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>Trent</dc:creator>
      <guid isPermaLink="false">23718@/discussions</guid>
      <description><![CDATA[<p>Control whether Paypal requires a shipping address for buyers:  Dashboard &gt; Marketplace &gt; Product Listings -- Meta Settings<br />
shipping = 0 -- Paypal asks for shipping address, but doesn't require.<br />
shipping = 1 -- Paypal doesn't ask for shipping address (PurchasePremiumRoles default).<br />
shipping = 2 -- Paypal requires shipping address.</p>
]]></description>
   </item>
   <item>
      <title>ValidateUsername problem Vanilla 2.0.18.8 and php 5.3.23 ?</title>
      <link>http://vanillaforums.org/discussion/23710/validateusername-problem-vanilla-2-0-18-8-and-php-5-3-23</link>
      <pubDate>Mon, 13 May 2013 18:48:18 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>tderouin</dc:creator>
      <guid isPermaLink="false">23710@/discussions</guid>
      <description><![CDATA[<p>Hi,</p>

<p>I ran into a problem with php 5.3.23 and Vanilla Forums 2.0.18.8. Upon registration, users would get the error:</p>

<p>Username can only contain letters, numbers, underscores, and must be between 3 and 20 characters long.</p>

<p>regardless of whether they submitted a valid username or not. I found that the regex for validating usernames was having a problem:</p>

<p>/^([\d\w_]{3,20})?$/siu</p>

<p>produced the warning:</p>

<p>PHP Warning:  preg_match(): Compilation failed: unknown option bit(s) set at offset 0</p>

<p>and $Matches would be NULL.</p>

<p>It looks like it was the u bit that was causing the problem.</p>
]]></description>
   </item>
   <item>
      <title>RoleBadges</title>
      <link>http://vanillaforums.org/discussion/23600/rolebadges</link>
      <pubDate>Sun, 28 Apr 2013 17:54:33 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>DogHam</dc:creator>
      <guid isPermaLink="false">23600@/discussions</guid>
      <description><![CDATA[<p>Hi, I have created some pictures for RoleBadges.</p>

<p>You have to change the width to 95px in RolesBages.css on line 3.</p>

<p>hope you like it</p>
]]></description>
   </item>
   <item>
      <title>Tapatalk has a new Update : version 1.2.0 and here is the link*</title>
      <link>http://vanillaforums.org/discussion/23640/tapatalk-has-a-new-update-version-1-2-0-and-here-is-the-link</link>
      <pubDate>Fri, 03 May 2013 18:38:35 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>Safeman</dc:creator>
      <guid isPermaLink="false">23640@/discussions</guid>
      <description><![CDATA[<p><a href="http://www.tapatalk.com/files/plugin/tapatalk_vn20_1.2.0.zip" target="_blank" rel="nofollow">http://www.tapatalk.com/files/plugin/tapatalk_vn20_1.2.0.zip</a></p>
]]></description>
   </item>
   <item>
      <title>Great plugin, but problems with JsConnect / SSO</title>
      <link>http://vanillaforums.org/discussion/20708/great-plugin-but-problems-with-jsconnect-sso</link>
      <pubDate>Thu, 28 Jun 2012 13:18:08 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>ben_seven</dc:creator>
      <guid isPermaLink="false">20708@/discussions</guid>
      <description><![CDATA[<p>Hi,</p>

<p>Your plugin seems great, with one problem.</p>

<p>I'm using jsConnect to hook the forum into Wordpress.</p>

<p>This creates a new user in Vanilla when they are logged into the Wordpress site and view the forum for the first time.</p>

<p>With your plugin enabled, this flow is broken, because user registration is not allowed to proceed without a FirstName / LastName, which it's clearly not getting from JSConnect (and even if it could, not all users will have a Firstname and Lastname set on the WP install). So this auto-login and registration breaks with 'Signature required' etc due to missing fields.</p>

<p>So it breaks the connection, and so I can't use it because having users access the forum is more important than displaying their names nicely (obviously).</p>

<p>The update I would request is a flag to set in the plugin settings, that stops this information from being required. Just to have the option would mean that SSO via JSConnect continues to work, but users have the option of going and setting a Nicename for display via your plugin.</p>

<p>Thanks.</p>
]]></description>
   </item>
   <item>
      <title>CSS Fix for long names</title>
      <link>http://vanillaforums.org/discussion/23559/css-fix-for-long-names</link>
      <pubDate>Tue, 23 Apr 2013 01:02:28 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>adriansonline</dc:creator>
      <guid isPermaLink="false">23559@/discussions</guid>
      <description><![CDATA[<p>I ran into a situation with a user with a really long name. If the same happens to you, use the code below and it will add a "..." so the point board looks cleaner :)</p>

<pre><code>    li.plbanchor
    a {
    max-width:130px;
        display:inline-block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
</code></pre>
]]></description>
   </item>
   <item>
      <title>Edit a user with no gender from the admin panel</title>
      <link>http://vanillaforums.org/discussion/23617/edit-a-user-with-no-gender-from-the-admin-panel</link>
      <pubDate>Tue, 30 Apr 2013 08:48:34 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>lifeisfoo</dc:creator>
      <guid isPermaLink="false">23617@/discussions</guid>
      <description><![CDATA[<p>Is not possible, because when you click "Save" this error message appears:</p>

<pre><code>You must select a Gender M or F
</code></pre>
]]></description>
   </item>
   <item>
      <title>Just a little feedback</title>
      <link>http://vanillaforums.org/discussion/22425/just-a-little-feedback</link>
      <pubDate>Thu, 10 Jan 2013 01:02:35 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>dotmiko</dc:creator>
      <guid isPermaLink="false">22425@/discussions</guid>
      <description><![CDATA[<p>If you're using the facebook plugin, which uses the first and last name of the poster, the plugin uses only the first name for linking.</p>

<p>For example:
User Johnny Depp is tagged.</p>

<p>When tagging <a rel="nofollow" href="/profile/Johnny">@Johnny</a> Depp, only Johnny is hyperlinked thus making the link invalid. :)</p>
]]></description>
   </item>
   <item>
      <title>2 Color vs 3 Colors Theme</title>
      <link>http://vanillaforums.org/discussion/23653/2-color-vs-3-colors-theme</link>
      <pubDate>Sun, 05 May 2013 07:56:26 +0000</pubDate>
      <category>Feedback</category>
      <dc:creator>aery</dc:creator>
      <guid isPermaLink="false">23653@/discussions</guid>
      <description><![CDATA[<p>I have been working on new version and wanted suggestion whether you guys like new 2 colors or old 3 colors theme. Here are the screenshots, tell me which one looks better -</p>

<p>2 color theme - 
<img src="http://i.imgur.com/3zBcMFIh.png" alt="" /></p>

<p>3 Color theme - 
<img src="http://i.imgur.com/7WFweMb.jpg" alt="" /></p>
]]></description>
   </item>
   </channel>
</rss>