<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
 <channel>
<generator>SpannerDEV CMS (C) Dawid 'Spanner' Baruch 2012, http://www.baruch.pl &amp; http://www.spannerdev.pl</generator>
<title>Invisionize.eu - Najnowsze wiadomoci ze Świata IP.Board</title>
<link>http://www.invisionize.eu/</link>
<description><![CDATA[Najnowsze wiadomości ze Świata IP.Board w serwisie Invisionize.eu]]></description>
<language>en</language>
<copyright>Invisionize.eu 2012</copyright>
<managingEditor>Dawid Baruch</managingEditor>
<webMaster>Dawid Baruch</webMaster>
<ttl>120</ttl>
<pubDate>2012-05-18T22:05:08+02:00</pubDate>
<lastBuildDate>2012-05-18T22:05:08+02:00</lastBuildDate>
   <item>
       <title>Huge private messages cause issues</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051286-Huge-private-messages-cause-issues.html</link>
       <pubDate>2012-05-18T21:05:34+02:00</pubDate>
       <description><![CDATA[Ignoring how the messages got this way (I'm assuming a modification must have been used), customer has some personal topics with over 5000 participants in them.&nbsp;&nbsp;When the customer attempts to delete a user in the ACP, it times out and the user is not deleted.<br />
<br />
It's erroring out running this query<br />
<br />
<pre class='prettyprint'>SELECT mt.*,map.* FROM ibf_message_topics mt LEFT JOIN ibf_message_topic_user_map map ON ( map.map_topic_id=mt.mt_id AND map.map_user_active=1 ) WHERE mt.mt_id IN(11059,15751,20456,25218,30033,34852,34908,34954,35357,40920,46545,52245,58104,63970)</pre>
<br />
This is returning over 12,000 rows and there's no limit (as expected, since you would normally expect much much fewer results).<br />
<br />
The above query stems from messengerFunctions::deleteTopics(), which is called from IPSMember::remove().<br />
<br />
See ticket 799301]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051286-Huge-private-messages-cause-issues.html</guid>
   </item>
   <item>
       <title>Lawliet's Blog - Perfect skin</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051285-Lawliets-Blog-Perfect-skin.html</link>
       <pubDate>2012-05-18T21:05:08+02:00</pubDate>
       <description><![CDATA[Hi everyone<br />
<br />
I have some questions.<br />
What skin is perfect for you? Colors, accessories (addons), theme...<br />
<a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> for games? Meybe general <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> (for all forums, communities).<br />
<br />
<span class='bbc_underline'><span style='font-size: 10px;'>Maybe waiting for something special?</span></span>]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051285-Lawliets-Blog-Perfect-skin.html</guid>
   </item>
   <item>
       <title>No indication of an unapproved status for comments</title>
       <link>http://www.invisionize.eu/IP-Content-Tracker/051284-No-indication-of-an-unapproved-status-for-comments.html</link>
       <pubDate>2012-05-18T20:05:39+02:00</pubDate>
       <description><![CDATA[While I was working on <a href="http://www.invisionize.eu/redirect/community.invisionpower.com/tracker/issue-36414-using-forum-topic-for-comments/" rel="nofollow">this bug report</a> I've noticed that when a guest posts a comment and the comment is moderated they get NO notification of that and might think the comment wasn't submitted properly.<br />
<br />
<br />
This happens only if the user posting is a guest and reCAPTCHA is enabled (in such case the ajax call is not added to the form), we should add some kind of inline message at the top of the page after the redirect or add some kind of notice in the comments editor itself like we already do while posting topics.]]></description>
       <category>IP.Content Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Content-Tracker/051284-No-indication-of-an-unapproved-status-for-comments.html</guid>
   </item>
   <item>
       <title>Not checking if a comment exists before executing the code</title>
       <link>http://www.invisionize.eu/IP-Content-Tracker/051283-Not-checking-if-a-comment-exists-before-executing-the-code.html</link>
       <pubDate>2012-05-18T19:05:40+02:00</pubDate>
       <description><![CDATA[In "public_ccs_pages_comments::doExcute()" you load the record data right away but never check if the record actually exists and just go on with the execution:<br />
<pre class='prettyprint'>
  $database = intval($this-&gt;request&#91;'database'&#93;);
  $record  = intval($this-&gt;request&#91;'record'&#93;);
  $database = $this-&gt;caches&#91;'ccs_databases'&#93;&#91; $database &#93;;

  $record  = $this-&gt;DB-&gt;buildAndFetch( array( 'select' =&gt; '*', 'from' =&gt; $database&#91;'database_database'&#93;, 'where' =&gt; 'primary_id_field=' . $record ) );
</pre>
<br />
Also the data in $record is never used until after all the permission checks so you can safely move it above this code below and then check if also the record exists:<br />
<pre class='prettyprint'>$databases-&gt;categories = $this-&gt;registry-&gt;ccsFunctions-&gt;getCategoriesClass( $databases-&gt;database );</pre>
<br />
<br />
Some lines after the code above you then pass the data to the comments class BUT in the extra data there is no 'record' variable to pass $record, you simply use it to load the record category and that's it. Is that intended? I haven't checked further but I believe at some point you'll need to load the record data anyway for the comment so passing it there will probably save an additional query later (unless the query later loads more data from other tables too or loads it in a different way?)]]></description>
       <category>IP.Content Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Content-Tracker/051283-Not-checking-if-a-comment-exists-before-executing-the-code.html</guid>
   </item>
   <item>
       <title>No delete confirmation for comments</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051282-No-delete-confirmation-for-comments.html</link>
       <pubDate>2012-05-18T18:05:38+02:00</pubDate>
       <description><![CDATA[When deleting a single comment a popup box appears to confirm the removal, however, if you select the checkbox and choose the delete option from the menu that appears bottom-right no confirmation is asked.<br />
<br />
<br />
We should also probably switch the single delete popup box to use the new data-confirmation JS included as of <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.1</a>.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051282-No-delete-confirmation-for-comments.html</guid>
   </item>
   <item>
       <title>Links not autolinking</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051281-Links-not-autolinking.html</link>
       <pubDate>2012-05-18T16:06:30+02:00</pubDate>
       <description><![CDATA[I posted two links in this post here and they did not auto link as they should<br />
<br />
<a href="http://www.invisionize.eu/redirect/community.invisionpower.com/topic/362793-integration-with-existing-user-database/#entry2268652" rel="nofollow">http://community.inv...e/#entry2268652</a>]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051281-Links-not-autolinking.html</guid>
   </item>
   <item>
       <title>Cache our Post in Sites</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051280-Cache-our-Post-in-Sites.html</link>
       <pubDate>2012-05-18T14:05:48+02:00</pubDate>
       <description><![CDATA[After How many time Google cache our Post If Sites?]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051280-Cache-our-Post-in-Sites.html</guid>
   </item>
   <item>
       <title>Topic Moderation and Delete Options</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051279-Topic-Moderation-and-Delete-Options.html</link>
       <pubDate>2012-05-18T14:05:32+02:00</pubDate>
       <description><![CDATA[Having just upgraded to the latest version from 3.2.something...<br />
<br />
When I'm on the topic moderation panel, eg,<br />
index.php?app=core&module=modcp&fromapp=forums&tab=unapprovedtopics<br />
<br />
and hit delete, I'm taken to the 'hide' options. There's no way to get to a plain old delete (which, given that most topics getting zapped from the mod queue will be spam, is the one you're most likely to want).<br />
<br />
And while I'm here, topic moderation still leaves a little to be desired. Actual post content should be available so we can rattle down the list making quick decisions, and we should be able to make those en masse - give us 'approve / hide / delete' radio buttons and one 'submit' at the bottom.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051279-Topic-Moderation-and-Delete-Options.html</guid>
   </item>
   <item>
       <title>(tng33) Quoted Images as Links</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051278-tng33-Quoted-Images-as-Links.html</link>
       <pubDate>2012-05-18T13:05:15+02:00</pubDate>
       <description><![CDATA[This is the IPB 3.3 version of this hook, for the 3.2 version, <a href="http://www.invisionize.eu/redirect/community.invisionpower.com/files/file/4623-tng32-quoted-images-as-links/" rel="nofollow">click here</a>.<br />
<br />
<span style='font-size: 14px;'>Displays quoted images as Lightbox enabled links to the original image. This saves space in your threads and means a post full of pictures is not repeated when someone quotes it.</span><br />
<span style='font-size: 14px;'>Users can also click on the generated link and if they have javascript, a lightbox will open showing the original image.</span><br />
<br />
<span style='font-size: 14px;'>This hook works by searching for quotes in a post, it will then strip away any BBCode images in those quotes (based on bbc_img class), replacing them with lightbox enabled urls to the original image, shortened and styled like standard BBCode urls.</span><br />
<br />
<span style='font-size: 14px;'>This hook has been tested on an English board but has been written to hopefully work with any language and will use the alt text of the image, as the title(shown on hover) of the link.</span> (e.g. Posted Image)<br />
<br />
<br />
<span style='font-size: 10px;'><span style='font-size: 12px;'><strong class='bbc'>NOTE:</strong></span></span><br />
<span style='font-size: 10px;'>This hook was written for IPB 3.3</span><br />
<span style='font-size: 10px;'>This hook is only for forum topics</span><span style='font-size: 10px;'> and the Global Comments</span><span style='font-size: 10px;'> System</span><br />
<span style='font-size: 10px;'>This hook only alters the DISPLAY of images quoted in posts, post data is not changed, the database remains untouched and as a result if a post is edited or quoted, the url to the quoted image will still be in [img] tags</span>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051278-tng33-Quoted-Images-as-Links.html</guid>
   </item>
   <item>
       <title>Sort by on What's new and Latest files hook ?</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051277-Sort-by-on-Whats-new-and-Latest-files-hook-.html</link>
       <pubDate>2012-05-18T12:05:34+02:00</pubDate>
       <description><![CDATA[By default in source/api/api_idm.php, the sort by is set to 'file_submitted DESC'<br />
<br />
And if you use a lot the 'version' functionality of ip downloads, you will never see the new version of files you'll upload.<br />
<br />
Why not sort by 'file_updated DESC&rsquo; ?]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051277-Sort-by-on-Whats-new-and-Latest-files-hook-.html</guid>
   </item>
   <item>
       <title>Error in status when parsing bad word</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051276-Error-in-status-when-parsing-bad-word.html</link>
       <pubDate>2012-05-18T11:05:39+02:00</pubDate>
       <description><![CDATA[If you set in bad word filter "After" option to some formating text ie. "<span style='color: #C0C0C0'><span style='font-size: 8px;'>[---]</span></span>"<br />
<br />
when user use word from that filter, parsing is wrong.<br />
<br />
You see in status (or comment to status):<br />
<br />
<p class='citation'>Quote</p><div class="blockquote"><div class='quote'>And now goes bad word: <span style='color: #C0C0C0'><span style='font-size: 8px;'>[---]</span></span></div></div>]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051276-Error-in-status-when-parsing-bad-word.html</guid>
   </item>
   <item>
       <title>Removing a versions download removes that versions change log.</title>
       <link>http://www.invisionize.eu/IP-Download-Tracker/051275-Removing-a-versions-download-removes-that-versions-change-log-.html</link>
       <pubDate>2012-05-18T10:05:41+02:00</pubDate>
       <description><![CDATA[maybe WAI, but take for example <a href="http://www.invisionize.eu/redirect/community.invisionpower.com/files/file/5276-rss-management-application/" rel="nofollow">http://community.inv...nt-application/</a><br />
I had a HUGE list on 1.0.3, but as the application needed vital patches i deleted that after uploading 1.0.4.<br />
My change log is gone.]]></description>
       <category>IP.Download Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Download-Tracker/051275-Removing-a-versions-download-removes-that-versions-change-log-.html</guid>
   </item>
   <item>
       <title>Forum reply counts</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051274-Forum-reply-counts.html</link>
       <pubDate>2012-05-18T10:05:37+02:00</pubDate>
       <description><![CDATA[Are incorrect. Archiver likely.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051274-Forum-reply-counts.html</guid>
   </item>
   <item>
       <title>test - asdf</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051273-test-asdf.html</link>
       <pubDate>2012-05-18T06:05:06+02:00</pubDate>
       <description><![CDATA[<object style="height: <a href="http://www.ipsbeyond.pl/forum/56-ip-board-3-0-x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.0.x</a>; width: 640px"><param name="movie" value="http://youtube.com/v/dyrAkwJ6WsY?version=3" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://youtube.com/v/dyrAkwJ6WsY?version=3" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="360"></embed></object><br />
asddasasas]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051273-test-asdf.html</guid>
   </item>
   <item>
       <title>[vB News] vBulletin Mobile Suite 1.3 has been released (Mobile Publisher, iOS, &amp; Andr</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051272-vB-News-vBulletin-Mobile-Suite-1-3-has-been-released-Mobile-Publisher-iOS-and-Andr.html</link>
       <pubDate>2012-05-18T04:05:45+02:00</pubDate>
       <description><![CDATA[*vBulletin Mobile Suite 1.3 is NOW AVAILABLE (http://members.vbulletin.com/)*. The feedback thread for this release is *HERE*... 
 
More......]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051272-vB-News-vBulletin-Mobile-Suite-1-3-has-been-released-Mobile-Publisher-iOS-and-Andr.html</guid>
   </item>
   <item>
       <title>New photo or album not appearing in gallery (global albums) when uploaded.</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051271-New-photo-or-album-not-appearing-in-gallery-global-albums-when-uploaded-.html</link>
       <pubDate>2012-05-18T01:05:38+02:00</pubDate>
       <description><![CDATA[Using IPB 3.3.1&nbsp;&nbsp;gallery 4.2.1 <br />
<br />
when uploading new photo or sub album the photo or sub album will not appear in the global albums untill i use resync and recount in the ACP. I asked about this in the gallery feedback as i cannot see any bug report here and two users so far have the same experience (so now adding as a bug )]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051271-New-photo-or-album-not-appearing-in-gallery-global-albums-when-uploaded-.html</guid>
   </item>
   <item>
       <title>Editing sigs</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051270-Editing-sigs.html</link>
       <pubDate>2012-05-18T00:05:34+02:00</pubDate>
       <description><![CDATA[Somehow.. I'm betting that this is a duplicate.. But, I can't search for "quote"<br />
<br />
If you edit a member, and they have a quote in their sig.. And you're using the CKEditor (Full).. It doesn't end well.<br />
<br />
<a href="http://www.invisionize.eu/redirect/screencast.com/t/tfaGuVpoFWd" rel="nofollow">http://screencast.com/t/tfaGuVpoFWd</a><br />
<br />
You can edit it with the editor in manual mode, it's fine.. But, if that quote is there and you're in full RTE mode.. the video shows what happens.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051270-Editing-sigs.html</guid>
   </item>
   <item>
       <title>Post Number</title>
       <link>http://www.invisionize.eu/IP-Tracker/051269-Post-Number.html</link>
       <pubDate>2012-05-17T23:05:44+02:00</pubDate>
       <description><![CDATA[<span style='font-family: arial,helvetica,sans-serif'>does IP Tracker 2.1.0 has the easy URL thing</span><br />
<br />
<span style='font-family: arial,helvetica,sans-serif'>like @ IPB Board</span><br />
<br />
<span style='font-family: arial,helvetica,sans-serif'>/topic/post#-title-name/<br />
index.php?showtopic=post#</span>]]></description>
       <category>IP.Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Tracker/051269-Post-Number.html</guid>
   </item>
   <item>
       <title>IIS7 and Custom Errors</title>
       <link>http://www.invisionize.eu/IPS-Documentation/051268-IIS7-and-Custom-Errors.html</link>
       <pubDate>2012-05-17T22:06:20+02:00</pubDate>
       <description><![CDATA[<a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> outputs appropriate HTTP header codes based on the specific response being issued.  This...]]></description>
       <category>IPS Documentation</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Documentation/051268-IIS7-and-Custom-Errors.html</guid>
   </item>
   <item>
       <title>EZEELOGIN-SECURE YOUR SERVERS WHEN YOU OUTSOURCE SUPPORT OR GIVE OUT SSH ROOT ACCESS</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051267-EZEELOGIN-SECURE-YOUR-SERVERS-WHEN-YOU-OUTSOURCE-SUPPORT-OR-GIVE-OUT-SSH-ROOT-ACCESS.html</link>
       <pubDate>2012-05-17T22:05:48+02:00</pubDate>
       <description><![CDATA[*_Ezeelogin  (http://ezeelogin.com)_**Keeps your servers and business safe & secure when you outsource your technical <a href="http://www.ipsbeyond.pl/forum/6-ip-board-support/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">support</a> or when you give ssh...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051267-EZEELOGIN-SECURE-YOUR-SERVERS-WHEN-YOU-OUTSOURCE-SUPPORT-OR-GIVE-OUT-SSH-ROOT-ACCESS.html</guid>
   </item>
   <item>
       <title>IPS Tracker Permission</title>
       <link>http://www.invisionize.eu/IP-Tracker/051264-IPS-Tracker-Permission.html</link>
       <pubDate>2012-05-17T22:05:45+02:00</pubDate>
       <description><![CDATA[is it me<br />
or i cannot add Version anymore<br />
after <a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IPS</a> Lost its Permission last 2 days ago<br />
<br />
cause i last time<br />
i posted<br />
i forgot to add version<br />
so i added the version after posting it<br />
<br />
<a href="http://www.invisionize.eu/redirect/community.invisionpower.com/tracker/issue-37291-project-owner-and-moderators/" rel="nofollow">http://community.inv...and-moderators/</a>]]></description>
       <category>IP.Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Tracker/051264-IPS-Tracker-Permission.html</guid>
   </item>
   <item>
       <title>ReCache Buttons</title>
       <link>http://www.invisionize.eu/IP-Tracker/051265-ReCache-Buttons.html</link>
       <pubDate>2012-05-17T22:05:45+02:00</pubDate>
       <description><![CDATA[under Apps --&gt; IP Tracker<br />
<br />
all Recache Buttons after pressed<br />
its not alligned to the button before you pressed it<br />
<br />
is it intended?<br />
<br />
under <strong class='bbc'>Projects</strong> and <strong class='bbc'>Modules --&gt; Manage Global Fields</strong>]]></description>
       <category>IP.Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Tracker/051265-ReCache-Buttons.html</guid>
   </item>
   <item>
       <title>Image Attachment</title>
       <link>http://www.invisionize.eu/IP-Tracker/051266-Image-Attachment.html</link>
       <pubDate>2012-05-17T22:05:45+02:00</pubDate>
       <description><![CDATA[<a href="http://www.invisionize.eu/redirect/community.invisionpower.com/tracker/issue-37397-super-admins-permissions/" rel="nofollow">http://community.inv...ns-permissions/</a><br />
<br />
The Issue has a big attached Image<br />
why is the imaged not trimmed?<br />
is it intended? cause it looks really weird]]></description>
       <category>IP.Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Tracker/051266-Image-Attachment.html</guid>
   </item>
   <item>
       <title>CCS tags break links</title>
       <link>http://www.invisionize.eu/IP-Content-Tracker/051263-CCS-tags-break-links.html</link>
       <pubDate>2012-05-17T19:05:41+02:00</pubDate>
       <description><![CDATA[<pre class='prettyprint'>http&#58;//www.FAKE.com/forums/index.php?/tags/ccs/example/page__search_app_filters&#91;ccs&#93;&#91;searchInKey&#93;__database_1</pre>
<br />
<a href="http://www.invisionize.eu/redirect/www.FAKE.com/forums/index.php?/tags/ccs/example/page__search_app_filters" rel="nofollow">http://www.FAKE.com/...rch_app_filters</a>[ccs][searchInKey]__database_1<br />
<br />
when just pasting a tag link from CCS into the text editor it drops off the bracketed items when parsing]]></description>
       <category>IP.Content Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Content-Tracker/051263-CCS-tags-break-links.html</guid>
   </item>
   <item>
       <title>app_class_(applicationkey).php</title>
       <link>http://www.invisionize.eu/IPS-Documentation/051262-app_class_applicationkey-php.html</link>
       <pubDate>2012-05-17T18:06:25+02:00</pubDate>
       <description><![CDATA[Your application can create a special class that will be loaded before your application is called...]]></description>
       <category>IPS Documentation</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Documentation/051262-app_class_applicationkey-php.html</guid>
   </item>
   <item>
       <title>Group blog ownership/options</title>
       <link>http://www.invisionize.eu/IP-Blog-Tracker/051261-Group-blog-ownership-options.html</link>
       <pubDate>2012-05-17T18:05:42+02:00</pubDate>
       <description><![CDATA[Ok.. Group blogs.. This is.. Going to be alot of things that are judgement calls. Problems/things that may need to be looked at are designated by numbers.<br />
<br />
You add a group blog for a group called "reviewers".. You, as the admin, are not in that group.<br />
<br />
1) You are listed as the 'owner' of that blog in blog_blogs. This causes a problem when linked with #2..<br />
<br />
2) Only the listed OWNER of the group blog can make changes to the layout.. So.. Adding new blocks, reorganizing blocks, etc.. You're the owner, but, you don't have anything 'to do' with the blog, your Reviewers group handles it.. But, they can't fully control the blog.<br />
<br />
3) ALL members of the group see the "Add Blocks" options and so on.. Though, they don't work. So, a member of the group can click "Add Block" and select a block to add.. It just doesn't do anything. They do NOT see the 'close block' option, and can't move blocks.<br />
<br />
<br />
So.. Really, this boils down to.. For the first item.. Should you be able to set the owner of the group blog when you create it? I think.. For the most part, all this is probably working as it should.. You want ONE person in the group as the 'owner' of the blog.. You don't want to allow ANY member of the group to add/rearrange blocks, because, then you get into slap-fights where one person changes something, another changes it back, the first changes it back again, and so on. You should have a listed OWNER.. Which, shouldn't be FORCED to be the person who creates the group blog in the ACP.<br />
<br />
That.. Basically covers problem 2 as well.<br />
<br />
Problem three.. That.. Shouldn't show for people who don't have that ability. Not change theme, not add blocks.. I assume they can't change the settings? I don't think they should be ABLE to if they can, though, I didn't test that.]]></description>
       <category>IP.Blog Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Blog-Tracker/051261-Group-blog-ownership-options.html</guid>
   </item>
   <item>
       <title>Application Extension: sitemapPlugins/</title>
       <link>http://www.invisionize.eu/IPS-Documentation/051260-Application-Extension-sitemapPlugins-.html</link>
       <pubDate>2012-05-17T17:06:21+02:00</pubDate>
       <description><![CDATA[Whether you create an entire custom application or just want to add some extra links to your site...]]></description>
       <category>IPS Documentation</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Documentation/051260-Application-Extension-sitemapPlugins-.html</guid>
   </item>
   <item>
       <title>No entry if user comes in chat</title>
       <link>http://www.invisionize.eu/IP-Chat-Tracker/051259-No-entry-if-user-comes-in-chat.html</link>
       <pubDate>2012-05-17T17:06:12+02:00</pubDate>
       <description><![CDATA[Hi<br />
<br />
check this out :<br />
<br />
<a href="http://www.invisionize.eu/redirect/i2.lulzimg.com/52e89906c3.jpg" rel="nofollow">http://i2.lulzimg.com/52e89906c3.jpg</a><br />
<br />
When new user enters, i see in chat, but at right of screen, i see only myself, no one else.<br />
<br />
I see them chatting but don't see their names at right side.]]></description>
       <category>IP.Chat Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Chat-Tracker/051259-No-entry-if-user-comes-in-chat.html</guid>
   </item>
   <item>
       <title>WTS DEASOFT :: New WHMreseller Version 4.0 Released! Master Reseller Software + more !</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051258-WTS-DEASOFT-New-WHMreseller-Version-4-0-Released-Master-Reseller-Software-p-more-.html</link>
       <pubDate>2012-05-17T16:05:48+02:00</pubDate>
       <description><![CDATA[WHMreseller V4.0 is now released. New features and functions to give Master Resellers even more control and power to managing their clients. So join...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051258-WTS-DEASOFT-New-WHMreseller-Version-4-0-Released-Master-Reseller-Software-p-more-.html</guid>
   </item>
   <item>
       <title>When warn a member, if i move the user to a new user group no action taken</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051257-When-warn-a-member-if-i-move-the-user-to-a-new-user-group-no-action-taken.html</link>
       <pubDate>2012-05-17T16:05:33+02:00</pubDate>
       <description><![CDATA[When warn a member, if i move the user to a new user group no action taken<br />
<br />
There is an option on the form, but no action taken...<br />
<br />
[attachment=39640:banned.jpg]]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051257-When-warn-a-member-if-i-move-the-user-to-a-new-user-group-no-action-taken.html</guid>
   </item>
   <item>
       <title>HTML in forum names</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051256-HTML-in-forum-names.html</link>
       <pubDate>2012-05-17T13:05:34+02:00</pubDate>
       <description><![CDATA[Right now it is possible to insert HTML in the forum names field and it will get parsed (see ticket #800901), however, the problem is that those HTML tags also appear in the seo name too.<br />
<br />
<br />
We need to decide:<ul class='bbcol decimal'><li>Don't <a href="http://www.ipsbeyond.pl/forum/6-ip-board-support/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">support</a> HTML at all in the field and convert it when inserted (the templates are not coded to handle HTML tags either and a single/double quote could break the alt tags or other tags)<br /></li><li><a href="http://www.ipsbeyond.pl/forum/6-ip-board-support/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">support</a> HTML properly in the templates and add a strip_tag call for the SEO name field<br /></li><li>Rather than adding a strip_tag call we could add a new column in the forums table with a HTML tags safe title field to use in <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> and for the SEO name (instead of having to add manually strip_tag everywhere in templates/functions).</li></ul>]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051256-HTML-in-forum-names.html</guid>
   </item>
   <item>
       <title>Issues with custom tag buttons in editor</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051255-Issues-with-custom-tag-buttons-in-editor.html</link>
       <pubDate>2012-05-17T12:05:34+02:00</pubDate>
       <description><![CDATA[If you click a custom bbcode tag button (like the Twitter button above) twice within an editor session, the description and input field will not actually be shown the second time. I assume this is because the code to display them is called onchange, and the selection doesn't change the second time...<br />
<br />
This is a problem especially when selecting words to decorate them with tags, because the second time the word will actually be deleted.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051255-Issues-with-custom-tag-buttons-in-editor.html</guid>
   </item>
   <item>
       <title>report_emailpm rendering issue</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051254-report_emailpm-rendering-issue.html</link>
       <pubDate>2012-05-17T10:05:34+02:00</pubDate>
       <description><![CDATA[The email template for reported content is not optimal... i.e. string <br />
<strong class='bbc'>	report_emailpm</strong><br />
<br />
<br />
When I and my moderators receive the email on reported content it shows under "Report:" the content of the post reported immediately followed by the reason given by the user reporting the content, making it very unclear what the reason is. <br />
<br />
Example:<br />
<br />
Report: <br />
<br />
POST CONTENT BLA BLA BLA POST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLAPOST CONTENT BLA BLA BLA<br />
<em class='bbc'>Reason=Gibberish</em>]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051254-report_emailpm-rendering-issue.html</guid>
   </item>
   <item>
       <title>dolrei's Blog - Get the most effective Briefcase for men</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051253-dolreis-Blog-Get-the-most-effective-Briefcase-for-men.html</link>
       <pubDate>2012-05-17T10:05:09+02:00</pubDate>
       <description><![CDATA[Briefcases for men are becoming essential elements of the male wardrobe. The nature of the case that men wear reflects their personal style. They can improve the professionalism of the owner and to improve their confidence. To the excellent cases for men to find, looking for high quality and design. Very good opportunities towels can make a lasting...]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051253-dolreis-Blog-Get-the-most-effective-Briefcase-for-men.html</guid>
   </item>
   <item>
       <title>Display name issue</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051252-Display-name-issue.html</link>
       <pubDate>2012-05-17T09:05:36+02:00</pubDate>
       <description><![CDATA[<em class='bbc'>Enter -1 for unlimited allowed changes.</em><br />
<br />
If you enter -1 in <em class='bbc'>days,</em> on the front end, when you try to change the name it says already taken.<br />
<br />
You can only use -1 in <em class='bbc'>times</em>. I had it in both to ensure it was unlimited.<br />
<br />
According to the language you can enter -1 in both, even though it is only really needed in times, since that makes it unlimited not matter what you have in days.<br />
<br />
Either a language change is needed, or just make -1 work in both to avoid errors. Thanks]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051252-Display-name-issue.html</guid>
   </item>
   <item>
       <title>table issues.</title>
       <link>http://www.invisionize.eu/IP-Content-Tracker/051251-table-issues-.html</link>
       <pubDate>2012-05-17T08:05:37+02:00</pubDate>
       <description><![CDATA[<a href="http://www.invisionize.eu/redirect/community.invisionpower.com/tracker/issue-37377-post-order-column/page__view__getnewpost" rel="nofollow">http://community.inv...iew__getnewpost</a><br />
a separate issue.<br />
in investigating, an archived topic? all "comments" would be gone.<br />
comments/records.php.... alterFetchQuery method.<br />
<pre class='prettyprint'> 'from'		=&gt; array( 'posts' =&gt; 'p' ),</pre>
also... I believe<br />
<pre class='prettyprint'>
feed_forums
</pre>
needs a patch for such, but I think thats over in <a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> again -.-]]></description>
       <category>IP.Content Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Content-Tracker/051251-table-issues-.html</guid>
   </item>
   <item>
       <title>Driver error in admincp caused by IP.Blog</title>
       <link>http://www.invisionize.eu/IP-Blog-Tracker/051250-Driver-error-in-admincp-caused-by-IP-Blog.html</link>
       <pubDate>2012-05-17T07:05:41+02:00</pubDate>
       <description><![CDATA[when searching for a member recently who has no blogs in the ACP, I got a driver error.&nbsp;&nbsp;Looking at the logfile in the cache directory, I found the following entry:<br />
<br />
<p class='citation'>Quote</p><div class="blockquote"><div class='quote'>
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br />
 Date: Wed, 16 May 2012 17:59:04 +0000<br />
 Error: 1064 - 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 ') GROUP BY blog_id' at line 1<br />
 IP Address: 196.210.183.190 - /forums/admin/index.php?adsess=4f97d3a9f13faf2821512677cf1c0dc7&app=members&&module=members&section=members&do=viewmember&member_id=81723<br />
 ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------<br />
 mySQL query error: SELECT blog_id, count(*) as entries, SUM(entry_num_comments) as comments FROM ibf_blog_entries WHERE blog_id IN () GROUP BY blog_id<br />
 .--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------.<br />
 | File																	&nbsp;&nbsp; | Function																	&nbsp;&nbsp;| Line No.		&nbsp;&nbsp;|<br />
 |----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------|<br />
 | admin/applications_addon/ips/blog/sources/classes/blogFunctions.php	&nbsp;&nbsp;&nbsp;&nbsp;| [blogFunctions].rebuildMyBlogsCache										&nbsp;&nbsp; | 1071			&nbsp;&nbsp;|<br />
 '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------'<br />
 | admin/applications_addon/ips/blog/extensions/admin/member_form.php		 | [blogFunctions].fetchMyBlogs												&nbsp;&nbsp;| 86			&nbsp;&nbsp;&nbsp;&nbsp;|<br />
 '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------'<br />
 | admin/applications/members/modules_admin/members/members.php			&nbsp;&nbsp; | [admin_member_form__blog].getDisplayContent								&nbsp;&nbsp; | 414			&nbsp;&nbsp; |<br />
 '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------'<br />
 | admin/applications/members/modules_admin/members/members.php			&nbsp;&nbsp; | [admin_members_members_members]._memberView								&nbsp;&nbsp; | 134			&nbsp;&nbsp; |<br />
 '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------'<br />
 | admin/sources/base/ipsController.php									&nbsp;&nbsp; | [admin_members_members_members].doExecute									 | 306			&nbsp;&nbsp; |<br />
 '----------------------------------------------------------------------------+-------------------------------------------------------------------------------+-------------------'<br /></div></div>
<br />
I tracked this down to a coding issue in admin/applications_addon/ips/blog/sources/classes/blogFunctions.php at around line 1199 just after the comment /* Get entries and comments */.&nbsp;&nbsp;The fix is to change this code:<br />
<br />
<pre class='prettyprint'>
$this-&gt;DB-&gt;build( array('select' =&gt; 'blog_id, count(*) as entries, SUM(entry_num_comments) as comments', 'from' =&gt; 'blog_entries', 'where' =&gt; 'blog_id IN (' . implode( ',', array_keys( $blogs ) ) . ')', 'group' =&gt; 'blog_id') );
	$this-&gt;DB-&gt;execute();
	while( $row = $this-&gt;DB-&gt;fetch() )
	{
	 if ( isset($blogs&#91; $row&#91;'blog_id'&#93; &#93;) )
	 {
	  $blogs&#91; $row&#91;'blog_id'&#93; &#93;&#91;'num_entries'&#93;	   = $row&#91;'entries'&#93;;
	  $blogs&#91; $row&#91;'blog_id'&#93; &#93;&#91;'blog_num_comments'&#93; = $row&#91;'comments'&#93;;
	 }
	}
</pre>
<br />
to this:<br />
<br />
<pre class='prettyprint'>
if (count($blogs) &gt; 0)
   {
	$this-&gt;DB-&gt;build( array('select' =&gt; 'blog_id, count(*) as entries, SUM(entry_num_comments) as comments', 'from' =&gt; 'blog_entries', 'where' =&gt; 'blog_id IN (' . implode( ',', array_keys( $blogs ) ) . ')', 'group' =&gt; 'blog_id') );
	$this-&gt;DB-&gt;execute();
	while( $row = $this-&gt;DB-&gt;fetch() )
	{
	 if ( isset($blogs&#91; $row&#91;'blog_id'&#93; &#93;) )
	 {
	  $blogs&#91; $row&#91;'blog_id'&#93; &#93;&#91;'num_entries'&#93;	   = $row&#91;'entries'&#93;;
	  $blogs&#91; $row&#91;'blog_id'&#93; &#93;&#91;'blog_num_comments'&#93; = $row&#91;'comments'&#93;;
	 }
	}
   }
</pre>]]></description>
       <category>IP.Blog Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Blog-Tracker/051250-Driver-error-in-admincp-caused-by-IP-Blog.html</guid>
   </item>
   <item>
       <title>shyne's Blog - cheapest beats by dre</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051248-shynes-Blog-cheapest-beats-by-dre.html</link>
       <pubDate>2012-05-17T06:05:08+02:00</pubDate>
       <description><![CDATA[Enormous even offers a new less costly presenting named the particular Surpasses Single; these are more compact and <a href="http://www.invisionize.eu/redirect/www.monsterbeatsbydreusoutlet.com/monster-beats-turbine_c9" rel="nofollow"><strong class='bbc'>Monster Beats Turbine</strong></a> also compact although deficiency sound canceling performance. The particular Surpasses Single are generally? based on a new Enormous...]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051248-shynes-Blog-cheapest-beats-by-dre.html</guid>
   </item>
   <item>
       <title>shyne's Blog - air jordans for cheap</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051249-shynes-Blog-air-jordans-for-cheap.html</link>
       <pubDate>2012-05-17T06:05:08+02:00</pubDate>
       <description><![CDATA[As soon as you find out what you need you will end up from a improved placement to pick out the right course to supply people the outcome you want and also be expecting. To start with, allows discuss Shaun Ts Insanity work out that derives the identify from your never ending anaerobic express you are set for lengthy cycles having exclusively pretty limited...]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051249-shynes-Blog-air-jordans-for-cheap.html</guid>
   </item>
   <item>
       <title>&quot;New&quot; tag in album view</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051247-New-tag-in-album-view.html</link>
       <pubDate>2012-05-17T05:05:39+02:00</pubDate>
       <description><![CDATA[Ok if you view an album if it has sub-albums then the pictures from the sub-albums are also displayed on this page right? Well those don't have the bright orange "new" tag. When I view those same pictures in the sub album then they have the tag. The comment indicator works just fine.]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051247-New-tag-in-album-view.html</guid>
   </item>
   <item>
       <title>daniela0's Blog - Thomas Sabo Australia</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051245-daniela0s-Blog-Thomas-Sabo-Australia.html</link>
       <pubDate>2012-05-17T05:05:14+02:00</pubDate>
       <description><![CDATA[The historic custom in the elegance bracelet has created a huge comeback applying the <a href="http://www.invisionize.eu/redirect/www.charmsthomassaboaustralia.org/" rel="nofollow">thomas sabo</a> elegance Club. Irrespective of whether you'd probably prefer to offer it apart just like a memento, put on it as a possible accessory or essentially just compensate it, the...]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051245-daniela0s-Blog-Thomas-Sabo-Australia.html</guid>
   </item>
   <item>
       <title>daniela0's Blog - Abercrombie and Fitch Schweiz</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051246-daniela0s-Blog-Abercrombie-and-Fitch-Schweiz.html</link>
       <pubDate>2012-05-17T05:05:14+02:00</pubDate>
       <description><![CDATA[All individuals people, that are style freaks, would want to impress their pals thus are desperate to transform their style, they should undoubtedly only put on <a href="http://www.invisionize.eu/redirect/www.abercrombieandfitchschweiz.eu/" rel="nofollow">abercrombie</a> clothes. males and ladies can seem very advanced and decent, once they are planning to actions faraway from those homes, sporting...]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051246-daniela0s-Blog-Abercrombie-and-Fitch-Schweiz.html</guid>
   </item>
   <item>
       <title>[vB News] vBulletin 4.2 ALPHA 1 available for download (DO NOT UPGRADE LIVE/PROD INST</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051243-vB-News-vBulletin-4-2-ALPHA-1-available-for-download-DO-NOT-UPGRADE-LIVE-PROD-INST.html</link>
       <pubDate>2012-05-17T03:06:48+02:00</pubDate>
       <description><![CDATA[We are pleased to announce the release of vBulletin 4.2 *ALPHA 1*.  
  
This is an early evaluation release of 4.2, which is a major release...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051243-vB-News-vBulletin-4-2-ALPHA-1-available-for-download-DO-NOT-UPGRADE-LIVE-PROD-INST.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Arova</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051244-Free-Wordpress-Theme-Arova.html</link>
       <pubDate>2012-05-17T03:06:48+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Arova_* 
 
Arova is a ads ready shopping wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-15_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051244-Free-Wordpress-Theme-Arova.html</guid>
   </item>
   <item>
       <title>New spaces introduced by the RTE</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051242-New-spaces-introduced-by-the-RTE.html</link>
       <pubDate>2012-05-17T03:06:32+02:00</pubDate>
       <description><![CDATA[In the block of code below there are 8 spaces before <span style='font-family: courier new,courier,monospace'>&lt;c&gt;</span>, whereas I just introduced 4.<br />
<br />
<pre class='prettyprint'>
&lt;a&gt;
  &lt;b&gt;
	&lt;c&gt;
	  &lt;d&gt;
		&lt;e&gt;
		&lt;/e&gt;
	  &lt;/d&gt;
	&lt;/c&gt;
  &lt;/b&gt;
&lt;/a&gt;
</pre>
<br />
It seems that blocks of 4 spaces are replaced with a tab.&nbsp;&nbsp;And later tabs are replaced with 8 spaces.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051242-New-spaces-introduced-by-the-RTE.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Bomi</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051240-Free-Wordpress-Theme-Bomi.html</link>
       <pubDate>2012-05-17T02:06:02+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Bomi_* 
 
Bomi is a ads ready music wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-14_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051240-Free-Wordpress-Theme-Bomi.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Cinta</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051241-Free-Wordpress-Theme-Cinta.html</link>
       <pubDate>2012-05-17T02:06:02+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Cinta_* 
 
Cinta is a ads ready sexy wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-13_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051241-Free-Wordpress-Theme-Cinta.html</guid>
   </item>
   <item>
       <title>(r) is converted to ®</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051239-r-is-converted-to-®.html</link>
       <pubDate>2012-05-17T02:05:46+02:00</pubDate>
       <description><![CDATA[Steps to reproduce:<br />
- write ( r ) in the editor (without the spaces)<br />
- click on the preview button<br />
- you will see in the preview the character ®<br />
- if you were using the RTE, the character will also appear in the editor]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051239-r-is-converted-to-®.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Delox</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051237-Free-Wordpress-Theme-Delox.html</link>
       <pubDate>2012-05-17T01:05:50+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Delox_* 
 
Delox is a ads ready premium wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-12_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051237-Free-Wordpress-Theme-Delox.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Isipadu</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051238-Free-Wordpress-Theme-Isipadu.html</link>
       <pubDate>2012-05-17T01:05:50+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Isipadu_* 
 
Isipadu is a ads ready web 2.0 wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-11_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051238-Free-Wordpress-Theme-Isipadu.html</guid>
   </item>
   <item>
       <title>mobile_device_map entry</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051234-mobile_device_map-entry.html</link>
       <pubDate>2012-05-17T01:05:35+02:00</pubDate>
       <description><![CDATA[The entry for the mobile_device_map is not removed when you delete a user.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051234-mobile_device_map-entry.html</guid>
   </item>
   <item>
       <title>&amp;nbsp; are lost when using the non-RTE editor</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051235-andnbsp-are-lost-when-using-the-non-RTE-editor.html</link>
       <pubDate>2012-05-17T01:05:35+02:00</pubDate>
       <description><![CDATA[Steps to reproduce:<br />
<br />
- with the RTE editor disabled, write a post with the contents<br />
&lt;b&gt;x&nbsp;y&lt;/b&gt;<br />
- press the Preview button<br />
- the &nbsp; is replaced by a space both in the preview and in the editor]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051235-andnbsp-are-lost-when-using-the-non-RTE-editor.html</guid>
   </item>
   <item>
       <title>Topic FURL redirect</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051236-Topic-FURL-redirect.html</link>
       <pubDate>2012-05-17T01:05:35+02:00</pubDate>
       <description><![CDATA[Take this topic as an example..<br />
<br />
<a href="http://www.invisionize.eu/redirect/community.invisionpower.com/topic/362680-ipnexus-15-dev-update-more-new-support-system-features/page__pid__2267070#entry2267070" rel="nofollow">http://community.inv...70#entry2267070</a><br />
<br />
If you go to community.invisionpower.com/topic/362680-mooooooo<br />
<br />
You're redirected to the proper FURL<br />
<br />
However.. On non-latin languages..<br />
<br />
<a href="http://www.invisionize.eu/redirect/screencast.com/t/nEyN7hbHm" rel="nofollow">http://screencast.com/t/nEyN7hbHm</a><br />
<br />
No redirection. Ignore Rhett killing my videos.. I'm just used to someone doing it by now.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051236-Topic-FURL-redirect.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Kimia</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051232-Free-Wordpress-Theme-Kimia.html</link>
       <pubDate>2012-05-17T00:05:50+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Kimia_* 
 
Kimia is a ads ready sexy wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-10_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051232-Free-Wordpress-Theme-Kimia.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Laboo</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051233-Free-Wordpress-Theme-Laboo.html</link>
       <pubDate>2012-05-17T00:05:50+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Laboo_* 
 
Laboo is a ads ready music wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-9_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051233-Free-Wordpress-Theme-Laboo.html</guid>
   </item>
   <item>
       <title>Tracker sort Go button</title>
       <link>http://www.invisionize.eu/IP-Tracker/051231-Tracker-sort-Go-button.html</link>
       <pubDate>2012-05-17T00:05:47+02:00</pubDate>
       <description><![CDATA[I can't tell you how many times I have hit the Go button on the right, and not in the middle.<br />
<br />
You can take a look here:<br />
<br />
[attachment=39631:ips_tracker.jpg]<br />
<br />
I just realized it is my window size and the Go button is wrapping. Can you add a nowrap to that so it stays on the right?<br />
<br />
Thanks<br />
]]></description>
       <category>IP.Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Tracker/051231-Tracker-sort-Go-button.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Moin</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051228-Free-Wordpress-Theme-Moin.html</link>
       <pubDate>2012-05-16T23:05:49+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Moin_* 
 
Moin is a ads ready news wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-8_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051228-Free-Wordpress-Theme-Moin.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Musik</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051229-Free-Wordpress-Theme-Musik.html</link>
       <pubDate>2012-05-16T23:05:49+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Musik_* 
 
Musik is a ads ready music wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-7_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051229-Free-Wordpress-Theme-Musik.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Rima</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051230-Free-Wordpress-Theme-Rima.html</link>
       <pubDate>2012-05-16T23:05:49+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Rima_* 
 
Rima is a ads ready premium wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-6_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051230-Free-Wordpress-Theme-Rima.html</guid>
   </item>
   <item>
       <title>Woodsman's Blog - About the Skins of The Woodsman</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051227-Woodsmans-Blog-About-the-Skins-of-The-Woodsman.html</link>
       <pubDate>2012-05-16T23:05:09+02:00</pubDate>
       <description><![CDATA[   Back around 2000 I once saw a website with a fixed background it was totally awesome. I asked the Webmaster who designed the site and wanted to know how it was done. His arrogant reply was "Figure it out for yourself&hellip;" Best piece of advice I have ever received from someone other than my...]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051227-Woodsmans-Blog-About-the-Skins-of-The-Woodsman.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Rove</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051224-Free-Wordpress-Theme-Rove.html</link>
       <pubDate>2012-05-16T22:05:50+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Rove_* 
 
Rove is a ads ready art wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-5_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051224-Free-Wordpress-Theme-Rove.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Sono</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051225-Free-Wordpress-Theme-Sono.html</link>
       <pubDate>2012-05-16T22:05:50+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Sono_* 
 
Sono is a ads ready shopping wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-4_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051225-Free-Wordpress-Theme-Sono.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Suka</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051226-Free-Wordpress-Theme-Suka.html</link>
       <pubDate>2012-05-16T22:05:50+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Suka_* 
 
Suka is a ads ready real estate wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-3_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051226-Free-Wordpress-Theme-Suka.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Wuda</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051222-Free-Wordpress-Theme-Wuda.html</link>
       <pubDate>2012-05-16T21:05:53+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Wuda_* 
 
Wuda is a ads ready pet wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-2_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051222-Free-Wordpress-Theme-Wuda.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Wudix</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051223-Free-Wordpress-Theme-Wudix.html</link>
       <pubDate>2012-05-16T21:05:53+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Wudix_* 
 
Wudix is a ads ready shopping wordpress theme 
 
Image: http://www.31f.info/wp/p/1891-15-1_640_480.jpg ...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051223-Free-Wordpress-Theme-Wudix.html</guid>
   </item>
   <item>
       <title>Editor data parsing &amp;lt;p&amp;gt; and &amp;lt;br /&amp;gt;</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051221-Editor-data-parsing-ltpgt-and-ltbr-gt.html</link>
       <pubDate>2012-05-16T21:05:38+02:00</pubDate>
       <description><![CDATA[My example post is simply this :<br />
<br />
1<br />
2<br />
3<br />
<br />
Okay so by default ckeditor will create in the background, one &lt;p&gt; per line :<br />
<br />
&lt;p&gt;1&lt;/p&gt;<br />
&lt;p&gt;2&lt;/p&gt;<br />
&lt;p&gt;3&lt;/p&gt;<br />
<br />
But you guys parse this and change it to :<br />
&lt;p&gt;1&lt;br /&gt;<br />
2&lt;br /&gt;<br />
3&lt;br /&gt;&lt;/p&gt;<br />
<br />
Maybe you had your reasons to format it this way, but i am posting this bug in case its not the wanted behavior.<br />
But this causes many bugs when for example you want to center a selected text after an edit or when toggle editing mode.<br />
<br />
Try to select only the number 2 and center, it will center everything. you will have to hit the enter button before and after the 2, to create another &lt;p&gt; and so be able to center the text you want.<br />
<br />
Why not keep all the &lt;p&gt;&nbsp;&nbsp;? I know that a &lt;p&gt; is suppose to be a paragraph, but even if you type this :<br />
<br />
1<br />
2<br />
<br />
3<br />
<br />
the data will be wrapped in one &lt;p&gt; and not the ideal behavior :<br />
&lt;p&gt;1&lt;br /&gt;<br />
2&lt;br /&gt;&lt;/p&gt;<br />
&lt;p&gt;3&lt;/p&gt;<br />
<br />
<br />
I hope i am making sense ! lol]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051221-Editor-data-parsing-ltpgt-and-ltbr-gt.html</guid>
   </item>
   <item>
       <title>(OFP) Ocean Front Property</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051216-OFP-Ocean-Front-Property.html</link>
       <pubDate>2012-05-16T21:05:17+02:00</pubDate>
       <description><![CDATA[<span style='color: #222222'>Ocean Front Property (OFP) was another first. You might say it was one that kept me focused when The Forest was driving me to my knees.<br />
This theme is one of my forward scrolling <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> with a fixed background.<br />
The <a href="http://www.ipsbeyond.pl/forum/4-ip-board-2-3-x-i-2-2-x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">2.2.x</a> - <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.x</a> versions have been tested on my own board and a few private boards.<br />
<br />
IP. Board Applications<br />
<a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> v3.3.x<br />
Blogs v2.5.2<br />
Calendar v3.3.0<br />
Content v2.3.1<br />
Downloads v2.5.1<br />
Gallery v4.2.1<br />
<br />
3rd Party Board Applications<br />
Links Directory v4.0.0<br />
Member Map v1.0.6<br />
Classifieds v1.2.1<br />
Contact Form v2.0.2<br />
(e32) Custom Sidebar Blocks v1.5.0<br />
Shoutbox v1.3.1<br />
Subscriptions Manager v1.2.0<br />
<a href="http://www.ipsbeyond.pl/forum/5-tutoriale-i-artykuly/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rssl">tutorials</a> v1.4.0<br />
<br />
Updated hooks that were embedded also work without error.</span><br />
<br />
<span style='color: #000000'>Also included:<br />
Logo PSD<br />
Team icon PSD<br />
Install instructions and other documentation<br />
<br />
Demo board </span><a href="http://www.invisionize.eu/redirect/www.woodsmansforest.com/demo_forum/" rel="nofollow"><span style='color: #0000ff'>http://www.woodsmans...com/demo_forum/</span></a><br />
<span style='color: #000000'>ID: Demo_User PW: demouser</span>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051216-OFP-Ocean-Front-Property.html</guid>
   </item>
   <item>
       <title>My Utopia</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051217-My-Utopia.html</link>
       <pubDate>2012-05-16T21:05:17+02:00</pubDate>
       <description><![CDATA[<span style='color: #222222'><span style='color: #222222'>My Utopia says it all for me, a house set back in the mountains with nothing but wildlife and fresh air.<br />
This theme is one of my forward scrolling <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> with a fixed background.<br />
The <a href="http://www.ipsbeyond.pl/forum/56-ip-board-3-0-x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.0.x</a> - <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.x</a> versions have been tested on my own board and a few private boards.</span></span><br />
<br />
<span style='color: #222222'><span style='color: #222222'>											&nbsp;&nbsp; <br />
IP. Board Applications<br />
<a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> v3.3.x<br />
Blogs v2.5.2<br />
Calendar v3.3.0<br />
Content v2.3.1<br />
Downloads v2.5.1<br />
Gallery v4.2.1<br />
<br />
3rd Party Board Applications<br />
Links Directory v4.0.0<br />
Member Map v1.0.6<br />
Classifieds v1.2.1<br />
Contact Form v2.0.2<br />
(e32) Custom Sidebar Blocks v1.5.0<br />
Shoutbox v1.3.1<br />
Subscriptions Manager v1.2.0<br />
<a href="http://www.ipsbeyond.pl/forum/5-tutoriale-i-artykuly/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rssl">tutorials</a> v1.4.0<br />
<br />
Updated hooks that were embedded also work without error.<br />
<br />
Screenshots</span></span><br />
<span style='color: #222222'><span style='color: #000000'>Also included:<br />
Logo PSD<br />
Team icon PSD<br />
Install instructions and other documentation</span></span><br />
<span style='color: #222222'> </span><br />
<span style='color: #000000'>Demo board <a href="http://www.invisionize.eu/redirect/www.woodsmansforest.com/demo_forum/" rel="nofollow"><span style='color: #0000ff'>http://www.woodsmans...com/demo_forum/</span></a><br />
ID: Demo_User PW: demouser</span>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051217-My-Utopia.html</guid>
   </item>
   <item>
       <title>Midnight Sun</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051218-Midnight-Sun.html</link>
       <pubDate>2012-05-16T21:05:17+02:00</pubDate>
       <description><![CDATA[<span style='color: #222222'>Midnight Sun was about as calming to make as it was seeing it as a desktop wallpaper.			&nbsp;&nbsp; </span><br />
<span style='color: #222222'>This theme is one of my forward scrolling <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> with a fixed background.<br />
The <a href="http://www.ipsbeyond.pl/forum/4-ip-board-2-3-x-i-2-2-x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">2.3.x</a> - <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.x</a> versions have been tested on a few private boards and all bug fixes made</span><br />
<br />
<span style='color: #222222'>IP. Board Applications<br />
<a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> v3.3.x<br />
Blogs v2.5.2<br />
Calendar v3.3.0<br />
Content v2.3.1<br />
Downloads v2.5.1<br />
Gallery v4.2.1<br />
<br />
3rd Party Board Applications<br />
Links Directory v4.0.0<br />
Member Map v1.0.6<br />
Classifieds v1.2.1<br />
Contact Form v2.0.2<br />
(e32) Custom Sidebar Blocks v1.5.0<br />
Shoutbox v1.3.1<br />
Subscriptions Manager v1.2.0<br />
<a href="http://www.ipsbeyond.pl/forum/5-tutoriale-i-artykuly/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rssl">tutorials</a> v1.4.0<br />
<br />
Updated hooks that were embedded also work without error.</span><br />
<br />
<span style='color: #000000'>Also included:<br />
Logo PSD<br />
Team icon PSD<br />
Install instructions and other documentation<br />
<br />
Demo board </span><a href="http://www.invisionize.eu/redirect/www.woodsmansforest.com/demo_forum/" rel="nofollow"><span style='color: #0000ff'>http://www.woodsmans...com/demo_forum/</span></a><br />
<span style='color: #000000'>ID: Demo_User PW: demouser</span>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051218-Midnight-Sun.html</guid>
   </item>
   <item>
       <title>Calm Nights</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051219-Calm-Nights.html</link>
       <pubDate>2012-05-16T21:05:17+02:00</pubDate>
       <description><![CDATA[<span style='color: #222222'>Calm Nights is a wallpaper that that is calming not just to the eyes but the mind as well. It seems to put you there.<br />
This theme is one of my forward scrolling <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> with a fixed background.<br />
This is a new <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.x</a> version have been tested on my own board.</span><br />
<br />
<span style='color: #222222'>IP. Board Applications<br />
<a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> v3.3.x<br />
Blogs v2.5.2<br />
Calendar v3.3.0<br />
Content v2.3.1<br />
Downloads v2.5.1<br />
Gallery v4.2.1<br />
<br />
3rd Party Board Applications<br />
Links Directory v4.0.0<br />
Member Map v1.0.6<br />
Classifieds v1.2.1<br />
Contact Form v2.0.2<br />
(e32) Custom Sidebar Blocks v1.5.0<br />
Shoutbox v1.3.1<br />
Subscriptions Manager v1.2.0<br />
<a href="http://www.ipsbeyond.pl/forum/5-tutoriale-i-artykuly/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rssl">tutorials</a> v1.4.0<br />
<br />
Updated hooks that were embedded also work without error.<br />
<br />
Screenshots</span><br />
<br />
<span style='color: #000000'>Also included:<br />
Logo PSD<br />
Team icon PSD<br />
Install instructions and other documentation<br />
<br />
Demo board </span><a href="http://www.invisionize.eu/redirect/www.woodsmansforest.com/demo_forum/" rel="nofollow"><span style='color: #0000FF'>http://www.woodsmans...com/demo_forum/</span></a><br />
<span style='color: #000000'>ID: Demo_User PW: demouser</span>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051219-Calm-Nights.html</guid>
   </item>
   <item>
       <title>Blue Ice</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051220-Blue-Ice.html</link>
       <pubDate>2012-05-16T21:05:17+02:00</pubDate>
       <description><![CDATA[<span style='color: #222222'>This is the fifth generation of Blue Ice updated to be compatible with <a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> version of 3.3x.<br />
This theme is one of my forward scrolling <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> with a fixed background.<br />
The <a href="http://www.ipsbeyond.pl/forum/4-ip-board-2-3-x-i-2-2-x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">2.3.x</a> - <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.x</a> versions have been tested on a few private boards and all bug fixes made.</span><br />
<br />
<span style='color: #222222'>IP. Board Applications<br />
<a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> v3.3.x<br />
Blogs v2.5.2<br />
Calendar v3.3.0<br />
Content v2.3.1<br />
Downloads v2.5.1<br />
Gallery v4.2.1<br />
<br />
3rd Party Board Applications<br />
Links Directory v4.0.0<br />
Member Map v1.0.6<br />
Classifieds v1.2.1<br />
Contact Form v2.0.2<br />
(e32) Custom Sidebar Blocks v1.5.0<br />
Shoutbox v1.3.1<br />
Subscriptions Manager v1.2.0<br />
<a href="http://www.ipsbeyond.pl/forum/5-tutoriale-i-artykuly/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rssl">tutorials</a> v1.4.0<br />
<br />
Updated hooks that were embedded also work without error.</span><br />
<span style='color: #000000'>Also included:<br />
Logo PSD<br />
Team icon PSD<br />
Install instructions and other documentation<br />
<br />
Demo board </span><a href="http://www.invisionize.eu/redirect/www.woodsmansforest.com/demo_forum/" rel="nofollow"><span style='color: #0000FF'>http://www.woodsmans...com/demo_forum/</span></a><br />
<span style='color: #000000'>ID: Demo_User PW: demouser</span>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051220-Blue-Ice.html</guid>
   </item>
   <item>
       <title>Royal Blue</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051215-Royal-Blue.html</link>
       <pubDate>2012-05-16T21:05:16+02:00</pubDate>
       <description><![CDATA[<span style='color: #222222'>Royal Blue is one of my personal favorites. I has a deep blue background and gold overlay.<br />
This is the <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.x</a> version of the Royal Blue skin theme.<br />
This theme is one of my forward scrolling <a href="http://www.ipsbeyond.pl/forum/13-ip-board-skins/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">skins</a> with a fixed background.<br />
The <a href="http://www.ipsbeyond.pl/forum/4-ip-board-2-3-x-i-2-2-x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">2.3.x</a> - <a href="http://www.ipsbeyond.pl/forum/101-ipboard-33x/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">3.3.x</a> versions have been tested on my own board and a few private boards.<br />
<br />
IP. Board Applications<br />
<a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> v3.3.x<br />
Blogs v2.5.2<br />
Calendar v3.3.0<br />
Content v2.3.1<br />
Downloads v2.5.1<br />
Gallery v4.2.1<br />
<br />
3rd Party Board Applications<br />
Links Directory v4.0.0<br />
Member Map v1.0.6<br />
Classifieds v1.2.1<br />
Contact Form v2.0.2<br />
(e32) Custom Sidebar Blocks v1.5.0<br />
Shoutbox v1.3.1<br />
Subscriptions Manager v1.2.0<br />
<a href="http://www.ipsbeyond.pl/forum/5-tutoriale-i-artykuly/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rssl">tutorials</a> v1.4.0<br />
<br />
Updated hooks that were embedded also work without error.</span><br />
<br />
<span style='color: #000000'>Also included:<br />
Logo PSD<br />
Team icon PSD<br />
Install instructions and other documentation<br />
<br />
Demo board </span><a href="http://www.invisionize.eu/redirect/www.woodsmansforest.com/demo_forum/" rel="nofollow"><span style='color: #0000ff'>http://www.woodsmans...com/demo_forum/</span></a><br />
<span style='color: #000000'>ID: Demo_User PW: demouser</span>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051215-Royal-Blue.html</guid>
   </item>
   <item>
       <title>Teaser paragraph doesn't appear in forum post</title>
       <link>http://www.invisionize.eu/IP-Content-Tracker/051214-Teaser-paragraph-doesnt-appear-in-forum-post.html</link>
       <pubDate>2012-05-16T20:05:39+02:00</pubDate>
       <description><![CDATA[I've set my articles to also post to the forum, however the teaser paragraph is missing in the posted topic.]]></description>
       <category>IP.Content Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Content-Tracker/051214-Teaser-paragraph-doesnt-appear-in-forum-post.html</guid>
   </item>
   <item>
       <title>Basic Uploader Fails</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051213-Basic-Uploader-Fails.html</link>
       <pubDate>2012-05-16T19:05:38+02:00</pubDate>
       <description><![CDATA[If you have "Allow members to use flash uploader" set to No, then the Basic Uploader fails when attempting to upload Gallery Images. The upload itself processes, but is never displayed in the list of uploaded files.<br />
<br />
I thought there was a report on this, but I can't find it, so this may be a Duplicate.]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051213-Basic-Uploader-Fails.html</guid>
   </item>
   <item>
       <title>Warning notes for moderators and for users error</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051212-Warning-notes-for-moderators-and-for-users-error.html</link>
       <pubDate>2012-05-16T19:05:35+02:00</pubDate>
       <description><![CDATA[Upgrade from 3.1.4 to 3.3.2.<br />
<br />
After upgrade all notes (warning reason) previously visible by user goes to notes for moderators. Users don't see old warning reason anymore, new warnings are ok.<br />
<br />
All old warning notes are stored in <strong class='bbc'>wl_note_mods</strong>, should be in <strong class='bbc'>wl_note_member</strong>]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051212-Warning-notes-for-moderators-and-for-users-error.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  Netaria</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051211-Free-Wordpress-Theme-Netaria.html</link>
       <pubDate>2012-05-16T17:06:19+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - Netaria_* 
 
Netaria WordPress theme is a 2 columns fixed width WordPress theme with theme options,featured content...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051211-Free-Wordpress-Theme-Netaria.html</guid>
   </item>
   <item>
       <title>Free Wordpress Theme  ElegantRed</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051210-Free-Wordpress-Theme-ElegantRed.html</link>
       <pubDate>2012-05-16T17:06:18+02:00</pubDate>
       <description><![CDATA[*_Free Wordpress Theme - ElegantRed_* 
 
An exceptional free WordPress theme with an ideal combination of red and white colors. Great looking wp...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051210-Free-Wordpress-Theme-ElegantRed.html</guid>
   </item>
   <item>
       <title>skinchange.php</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051209-skinchange-php.html</link>
       <pubDate>2012-05-16T17:06:03+02:00</pubDate>
       <description><![CDATA[skinchange.php starts &lt;? rather than &lt;?php]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051209-skinchange-php.html</guid>
   </item>
   <item>
       <title>Sessions API will not retrieve results for an application index.</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051208-Sessions-API-will-not-retrieve-results-for-an-application-index-.html</link>
       <pubDate>2012-05-16T16:05:35+02:00</pubDate>
       <description><![CDATA[<a href="http://www.invisionize.eu/redirect/community.invisionpower.com/topic/362789-app-sessionsclass/#entry2267863" rel="nofollow">http://community.inv...s/#entry2267863</a><br />
... Is it normal/WAI for the sessions class to not auto-<a href="http://www.ipsbeyond.pl/store/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">Store</a> or retrieve a default module/section?<br />
Just want to know before I go about hacking something... cause this is not right at all, my sessions class is kosher as far as i'm aware, in that it functions correctly, and bugfree, except for this, which I have been fighting from word go with this app.... I'm not getting my default's pushed in at <em class='bbc'>all,</em> current_module and current_section are always empty.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051208-Sessions-API-will-not-retrieve-results-for-an-application-index-.html</guid>
   </item>
   <item>
       <title>Paying Guest in Delhi</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051205-Paying-Guest-in-Delhi.html</link>
       <pubDate>2012-05-16T15:05:55+02:00</pubDate>
       <description><![CDATA[Image: http://www.pgncr.com/img/2.gif  
 
SANTOSHI VILLA Girls PG In Dehli - VNC PG is providing first class paying guest accommodation for girls /...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051205-Paying-Guest-in-Delhi.html</guid>
   </item>
   <item>
       <title>Gulshan Ikebana Noida</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051206-Gulshan-Ikebana-Noida.html</link>
       <pubDate>2012-05-16T15:05:55+02:00</pubDate>
       <description><![CDATA[Image: http://www.gulshan-homz-ikebana.com/index_files/sunworld_logo.jpg  
 
With a history of over 20 years, Gulshan Homz has constructed luxurious...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051206-Gulshan-Ikebana-Noida.html</guid>
   </item>
   <item>
       <title>Bulk Email Provider In Delhi</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051207-Bulk-Email-Provider-In-Delhi.html</link>
       <pubDate>2012-05-16T15:05:55+02:00</pubDate>
       <description><![CDATA[Image: http://onliveinfotech.com/images/logo.jpg  
 
Onlive Infotech is a Bulk Email, Bulk SMS company, providing world class services regarding web...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051207-Bulk-Email-Provider-In-Delhi.html</guid>
   </item>
   <item>
       <title>Pandaria - IPBFangorn</title>
       <link>http://www.invisionize.eu/Invision-Resources-Mods/051204-Pandaria-IPBFangorn.html</link>
       <pubDate>2012-05-16T15:05:14+02:00</pubDate>
       <description><![CDATA[<span style='font-family: arial, sans-serif'><span style='color: #333333'>Skin for World of Warcraft community</span></span><br />
<br />
<strong class='bbc'>The pack contains:</strong><ul class='bbc'><li>skin (three files .xml)<br /></li><li>fonts uses in logo<br /></li><li>psd logo<br /></li><li>psd login & register screen<br /></li><li>screenshots of skin</li></ul>
<strong class='bbc'>When you buy that skin, register in <a href="http://www.invisionize.eu/redirect/ipbfangorn.net/" rel="nofollow">IPBFangorn.net</a>, and write message to Lawliet to join the group of Customers.</strong><br />
<br />
<span style='color: #FF0000'><strong class='bbc'>Subforums in two columns!</strong></span><br />
<br />
<br />
<p class='bbc_center'><span style='color: #FF0000'><strong class='bbc'><span rel='lightbox'><img src='http://img12.imageshack.us/img12/1349/signlx.png' alt='Posted Image' class='bbc_img' /></span>&nbsp;&nbsp;<span rel='lightbox'><img src='http://img152.imageshack.us/img152/8565/registerbn.png' alt='Posted Image' class='bbc_img' /></span></strong></span></p>]]></description>
       <category>Invision Resources Mods</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/Invision-Resources-Mods/051204-Pandaria-IPBFangorn.html</guid>
   </item>
   <item>
       <title>Opera - Changing font settings makes cursor jump to beginning of text area</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051203-Opera-Changing-font-settings-makes-cursor-jump-to-beginning-of-text-area.html</link>
       <pubDate>2012-05-16T14:05:34+02:00</pubDate>
       <description><![CDATA[Reported by one of my users, confirmed with Opera 11.64.<br />
<br />
When you type a text, enable bold text, and then disable it again your cursor jumps to the beginning of the text. Same thing happens with color and so on.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051203-Opera-Changing-font-settings-makes-cursor-jump-to-beginning-of-text-area.html</guid>
   </item>
   <item>
       <title>shyne's Blog - to the telephone.</title>
       <link>http://www.invisionize.eu/IPS-Company-Blog/051202-shynes-Blog-to-the-telephone-.html</link>
       <pubDate>2012-05-16T14:05:09+02:00</pubDate>
       <description><![CDATA[Out there right this moment, that LG InTouch Potential GW620 has become the excellent scored Google android telephones. Several customers which obtain this specific cellular explain to most people they will learn. They will demand the fact that cellular phone is actually kind of excellent. The idea capabilities an incredible all 5 megapixel camera in...]]></description>
       <category>IPS Company Blog</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Company-Blog/051202-shynes-Blog-to-the-telephone-.html</guid>
   </item>
   <item>
       <title>Message read status still udated for invisible users</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051201-Message-read-status-still-udated-for-invisible-users.html</link>
       <pubDate>2012-05-16T13:05:38+02:00</pubDate>
       <description><![CDATA[When I log in as invisible and open a message, the sender can see that/when I read it. I don't think this should be the case, since it defies the whole point of being invisible...]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051201-Message-read-status-still-udated-for-invisible-users.html</guid>
   </item>
   <item>
       <title>Core applications and public titles</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051200-Core-applications-and-public-titles.html</link>
       <pubDate>2012-05-16T12:05:33+02:00</pubDate>
       <description><![CDATA[When editing a core application we check to make sure the admin doesn't disable them BUT we don't check also for an empty public title which essentially causes the application to be disabled in the public side.<br />
<br />
A customer had left the public title app empty and his user links were still using "showuser=X" because of it, furthermore the profiles were not accessible and returned a 404 page.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051200-Core-applications-and-public-titles.html</guid>
   </item>
   <item>
       <title>&quot;My content&quot; and hidden content</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051199-My-content-and-hidden-content.html</link>
       <pubDate>2012-05-16T11:05:37+02:00</pubDate>
       <description><![CDATA[I flagged a member as spammer on here, after that I visited his "find content" page to list his posts and delete them but nothing was returned, viewing a topic where there was a post I could see it properly thought. Basically "My Content" is not listing hidden posts/topics even thought I can see them it seems.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051199-My-content-and-hidden-content.html</guid>
   </item>
   <item>
       <title>Garage System v3.2.0</title>
       <link>http://www.invisionize.eu/DevFuse-News-and-Updates/051198-Garage-System-v3-2-0.html</link>
       <pubDate>2012-05-16T11:05:18+02:00</pubDate>
       <description><![CDATA[The Garage System has been updated with a few new features and several more bug fixes.<br />
<br />
<strong class='bbc'>Notable Changes:</strong><ul class='bbc'><li>Content spy integration for add and update vehicles.<br /></li><li><a href="http://www.ipsbeyond.pl/forum/6-ip-board-support/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">support</a> added for view new content, including improvements to the search plugin.<br /></li><li>My media plugin added for vehicles.<br /></li><li>Redesign of featured vehicles template, when 1 vehicle has been featured.<br /></li><li>Option in browse vehicles page to filter by make and/or model. (When using make/model database.)<br /></li><li><a href="http://www.ipsbeyond.pl/forum/6-ip-board-support/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">support</a> for bbcode in vehicle description.<br /></li><li>Overhaul of comment display and posting, layout now reflects other <a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IPS</a> apps. <a href="http://www.ipsbeyond.pl/forum/6-ip-board-support/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">support</a> for quick add comment included as well.</li></ul>
<strong class='bbc'>Bug Fixes:</strong>&nbsp;&nbsp; <ul class='bbc'><li><a href="http://www.invisionize.eu/redirect/www.devfuse.com/forums/tracker/issue-408-suggestion-list-member-group-in-global-box/" rel="nofollow">Suggestion:&nbsp;&nbsp;List member group in global box</a><br /></li><li><a href="http://www.invisionize.eu/redirect/www.devfuse.com/forums/tracker/issue-554-user-can-rate-his-own-car/" rel="nofollow">User can rate his own car</a><br /></li><li><a href="http://www.invisionize.eu/redirect/www.devfuse.com/forums/tracker/issue-568-sql-error-on-search/" rel="nofollow">Sql error on search</a><br /></li><li><a href="http://www.invisionize.eu/redirect/www.devfuse.com/forums/tracker/issue-602-bbcode-in-vehicle-description/" rel="nofollow">BBCode in vehicle description</a><br /></li><li><a href="http://www.invisionize.eu/redirect/www.devfuse.com/forums/tracker/issue-622-count-vehicle-views-only/" rel="nofollow">Count vehicle views only</a><br /></li><li><a href="http://www.invisionize.eu/redirect/www.devfuse.com/forums/tracker/issue-636-search-not-working-as-it-should-suggestion/" rel="nofollow">Search not working as it should + suggestion</a><br /></li><li><a href="http://www.invisionize.eu/redirect/www.devfuse.com/forums/tracker/issue-640-comment-profile-pic-missing/" rel="nofollow">Comment profile pic missing</a></li></ul>]]></description>
       <category>DevFuse News and Updates</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/DevFuse-News-and-Updates/051198-Garage-System-v3-2-0.html</guid>
   </item>
   <item>
       <title>Folder Locking S/W</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051197-Folder-Locking-S-W.html</link>
       <pubDate>2012-05-16T08:06:47+02:00</pubDate>
       <description><![CDATA[Which is the best Folder Locking S/W,where i can download its?]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051197-Folder-Locking-S-W.html</guid>
   </item>
   <item>
       <title>Text Editor PCA bug no longer works</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051196-Text-Editor-PCA-bug-no-longer-works.html</link>
       <pubDate>2012-05-16T03:05:33+02:00</pubDate>
       <description><![CDATA[Hello,<br />
<br />
The translation is done by Google, from French to English, sorry in advance for thisapporximatif English, if it is not very clear ....<br />
<br />
The editor of the PCA problem, when I open it, it has a apprence normal, but when I passthe mouse over the icons, no explanatory text is displayed. But icons are present.<br />
<br />
capture<br />
<br />
<span rel='lightbox'><img src='http://img11.hostingpics.net/pics/959293PCAediteur1.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<br />
If I click on an icon, the page of the PCA become gray, blue, and the PCA freezes<br />
<br />
capture<br />
<br />
<span rel='lightbox'><img src='http://img11.hostingpics.net/pics/948128PCAediteur2.jpg' alt='Posted Image' class='bbc_img' /></span><br />
<br />
<br />
How little I do to fix this problem occurs only in the PCA, the game publisher's PublicService and poses him no problems?<br />
<br />
Thank you in advance for helping me.<br />
Sincerely,]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051196-Text-Editor-PCA-bug-no-longer-works.html</guid>
   </item>
   <item>
       <title>Minimum tags</title>
       <link>http://www.invisionize.eu/IP-Board-3-x-Tracker/051195-Minimum-tags.html</link>
       <pubDate>2012-05-16T01:05:34+02:00</pubDate>
       <description><![CDATA[This.. Judgement call.. I read the setting as being that if you set a minimum, and if a user CHOOSES to add tags to a post, then they have to use the minimum number of tags.. Which is how it works now.<br />
<br />
But.. I suppose a case could be made that, if you set a minimum number of tags, that is the minimum required.. Period. If you say 3 tags, and a user is allowed to leave tags.. then they should have to leave 3.<br />
<br />
It boils down, it seems, to this..<br />
<br />
<pre class='prettyprint'>
		if ( $tags === false )
		{
			/* Error message is populated at this point */
			return false;
		}
</pre>
<br />
In abstract.php<br />
<br />
We return a false... BUT.. We don't return an error message.. So, classPost does checkAdd, which returns a false, BUT doesn't return an error, and<br />
<br />
<pre class='prettyprint'>
			if ( $this-&gt;registry-&gt;tags-&gt;getErrorMsg() )
			{
				$this-&gt;_postErrors = $this-&gt;registry-&gt;tags-&gt;getFormattedError();
				return FALSE;
			}
</pre>
<br />
is never triggered in classPost.php<br />
<br />
I can see both sides to this. I personally think it's right as it is... But.. I can see the other side, and.. I really can't tell what's intended here.]]></description>
       <category>IP.Board 3.x Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Board-3-x-Tracker/051195-Minimum-tags.html</guid>
   </item>
   <item>
       <title>[vB News] vBulletin Mobile Apps 1.3 have been released for vBulletin.com</title>
       <link>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051194-vB-News-vBulletin-Mobile-Apps-1-3-have-been-released-for-vBulletin-com.html</link>
       <pubDate>2012-05-16T00:05:51+02:00</pubDate>
       <description><![CDATA[*vBulletin iOS & Android Mobile Apps 1.3 for vBulletin.com have been released on the ***iTunes App Store*...]]></description>
       <category>AdminFusion: Invision Power Board</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/AdminFusion-Invision-Power-Board/051194-vB-News-vBulletin-Mobile-Apps-1-3-have-been-released-for-vBulletin-com.html</guid>
   </item>
   <item>
       <title>View all sizes inconsistency</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051192-View-all-sizes-inconsistency.html</link>
       <pubDate>2012-05-15T23:05:36+02:00</pubDate>
       <description><![CDATA[<a href="http://www.invisionize.eu/redirect/community.invisionpower.com/gallery/sizes/7549-bildschirmfoto-2012-05-10-um-023522/large/" rel="nofollow">http://community.inv...m-023522/large/</a><br />
<br />
Click between medium and large.&nbsp;&nbsp;The sizes are the same so you would expect to see no changes on the page (though the fact that both are present is probably not necessary either).&nbsp;&nbsp;Instead, the 'large' version is padded more than the medium version.&nbsp;&nbsp;This is because it is wrapped in a &lt;p&gt; tag (and no anchor tag), while the medium version is wrapped in an &lt;a&gt; but no paragraph tag.<br />
<br />
Will have to determine if there is any reason or value to this inconsistency (the linking), but in any event, the same padding should apply across the board.]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051192-View-all-sizes-inconsistency.html</guid>
   </item>
   <item>
       <title>Inconsistent stream</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051193-Inconsistent-stream.html</link>
       <pubDate>2012-05-15T23:05:36+02:00</pubDate>
       <description><![CDATA[<span rel='lightbox'><img src='http://content.screencast.com/users/bfarber/folders/Jing/media/53fe848e-dbd3-4c71-8410-2f27ec544c6a/2012-05-15_1612.png' alt='Posted Image' class='bbc_img' /></span><br />
<br />
Feels inconsistent]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051193-Inconsistent-stream.html</guid>
   </item>
   <item>
       <title>Sending Private Messages</title>
       <link>http://www.invisionize.eu/IPS-Documentation/051191-Sending-Private-Messages.html</link>
       <pubDate>2012-05-15T21:06:25+02:00</pubDate>
       <description><![CDATA[While you are encouraged to use the built in notification system  in <a href="http://www.ipsbeyond.pl/?utm_source=invisionize.eu&utm_medium=post&utm_campaign=rss">IP.Board</a> when your applicati...]]></description>
       <category>IPS Documentation</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Documentation/051191-Sending-Private-Messages.html</guid>
   </item>
   <item>
       <title>Gallery -&amp;gt; Browse</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051190-Gallery-gt-Browse.html</link>
       <pubDate>2012-05-15T21:05:38+02:00</pubDate>
       <description><![CDATA[1. The album displays a button "edit", but when you click on an error that you can not edit, I think that in this case, the button should not appear at all ..<br />
Screenshot:<br />
[attachment=39603:bug_2_1.png]<br />
<br />
After click "edit", screenshot:<br />
[attachment=39604:bug_2_2.png]<br />
<br />
2.<br />
Text: Images<br />
Replace with: images<br />
<br />
Text: Comments<br />
Replace with: comments<br />
<br />
As in other pages already ..]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051190-Gallery-gt-Browse.html</guid>
   </item>
   <item>
       <title>Application Extension: admin/forum_form.php</title>
       <link>http://www.invisionize.eu/IPS-Documentation/051189-Application-Extension-admin-forum_form-php.html</link>
       <pubDate>2012-05-15T20:06:17+02:00</pubDate>
       <description><![CDATA[If your application has a need, you can extend the add/edit forum form in the admin control panel...]]></description>
       <category>IPS Documentation</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IPS-Documentation/051189-Application-Extension-admin-forum_form-php.html</guid>
   </item>
   <item>
       <title>Edit Album</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051187-Edit-Album.html</link>
       <pubDate>2012-05-15T20:05:33+02:00</pubDate>
       <description><![CDATA[When editing the album, small errors in design, a screenshot:<br />
[attachment=39600:bug_1.png]]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051187-Edit-Album.html</guid>
   </item>
   <item>
       <title>Reputation showing zero</title>
       <link>http://www.invisionize.eu/IP-Gallery-Tracker/051188-Reputation-showing-zero.html</link>
       <pubDate>2012-05-15T20:05:33+02:00</pubDate>
       <description><![CDATA[Hi, the reputation on the comments in the gallery all show 0 on my board. They do however have reputation and I can view it by clicking on it, and then the names pop up.<br />
<br />
Also, if someone adds some new reputation to the comment, then it shows correctly.]]></description>
       <category>IP.Gallery Tracker</category>
       <author>Agregator Invisionize.eu</author>
       <guid>http://www.invisionize.eu/IP-Gallery-Tracker/051188-Reputation-showing-zero.html</guid>
   </item>
 </channel>
</rss>
