<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>Off Topic - FlatPress Forums</title>
      <link>http://www.flatpress.org/vanilla2/categories/off-topic/feed.rss</link>
      <pubDate>Thu, 23 May 13 01:36:22 -0400</pubDate>
         <description>Off Topic - FlatPress Forums</description>
   <language>en-CA</language>
   <atom:link href="/vanilla2/discussions/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>Implementing BBCode</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1891/implementing-bbcode</link>
      <pubDate>Sun, 06 Jan 2013 16:59:47 -0500</pubDate>
      <dc:creator>Likestodraw</dc:creator>
      <guid isPermaLink="false">1891@/vanilla2/discussions</guid>
      <description><![CDATA[I am currently writing a forum script and was wondering if anyone here could help me with implementing BBCode, considering the fact that that's what FlatPress uses in its posts.<br>If it helps, all the code can be downloaded at <a rel="nofollow" href="http://mahtava.allalla.com/nexus/downloads.php">http://mahtava.allalla.com/nexus/downloads.php</a>. It uses MySql to store data.<br>]]></description>
   </item>
   <item>
      <title>I Wonder What This Reminds Me Of...</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1963/i-wonder-what-this-reminds-me-of-</link>
      <pubDate>Wed, 20 Mar 2013 12:50:59 -0400</pubDate>
      <dc:creator>tdrusk</dc:creator>
      <guid isPermaLink="false">1963@/vanilla2/discussions</guid>
      <description><![CDATA[<img src="http://i.imgur.com/TQM2dxb.jpg" alt="image"><br>]]></description>
   </item>
   <item>
      <title>User avatars in Vanilla</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1967/user-avatars-in-vanilla</link>
      <pubDate>Fri, 22 Mar 2013 05:29:22 -0400</pubDate>
      <dc:creator>Stanley</dc:creator>
      <guid isPermaLink="false">1967@/vanilla2/discussions</guid>
      <description><![CDATA[<p>New users (and old) don't seem to have the option to choose/change their avatar anymore. I think this has been the case since the upgrade to Vanilla 2.</p><p>Anything can be done to get those back to add a bit of colour to the forum?</p>]]></description>
   </item>
   <item>
      <title>Spam on wiki</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1941/spam-on-wiki</link>
      <pubDate>Fri, 22 Feb 2013 13:32:43 -0500</pubDate>
      <dc:creator>LAttilaD</dc:creator>
      <guid isPermaLink="false">1941@/vanilla2/discussions</guid>
      <description><![CDATA[A big amount of spam has flooded Flatpress Wiki. I have removed a lot of it. Spammers should be banned, I suppose.]]></description>
   </item>
   <item>
      <title>flatpress-1.0-solenne Italiano (da revisionare)</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1741/flatpress-1-0-solenne-italiano-da-revisionare</link>
      <pubDate>Thu, 12 Jul 2012 18:41:13 -0400</pubDate>
      <dc:creator>u2t4c6s8n</dc:creator>
      <guid isPermaLink="false">1741@/vanilla2/discussions</guid>
      <description><![CDATA[Il pacchetto in lingua italiana, senz'altro da revisionare:<br /><a href="http://lospaziodifra.altervista.org/download/flatpress-1.0-solenne-IT.php" target="_blank" rel="nofollow">http://lospaziodifra.altervista.org/download/flatpress-1.0-solenne-IT.php</a>]]></description>
   </item>
   <item>
      <title>I rewrote some Smarty filters</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1836/i-rewrote-some-smarty-filters</link>
      <pubDate>Sat, 10 Nov 2012 13:27:08 -0500</pubDate>
      <dc:creator>LAttilaD</dc:creator>
      <guid isPermaLink="false">1836@/vanilla2/discussions</guid>
      <description><![CDATA[<span style="font-size: 10pt; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-family: Arial, Verdana;">I know this isn’t a Smarty forum but Smarty is an essential part of Flatpress. I was thinking about how to display the size of documents in the Static Page List and discovered variable modifiers in Smarty. So I added a bit to admin\panels\static\admin.static.list.tpl:</span><div style="font-size: 10pt; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal;"><div><span style="font-family: Courier New;">&lt;td&gt;{$content|count_words}&lt;br&gt;{$content|count_characters}&lt;/td&gt;</span></div></div><div style="font-size: 10pt; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-family: Arial, Verdana;">with a happy smile. It didn’t work. Neither count_words nor count_characters work with long files, and having a two megabytes static page results in an allocation error in either modifier. So I rewrote both. (Top remarks omitted here, I didn’t change them.)</div><div style="font-size: 10pt; font-style: normal; font-variant: normal; font-weight: normal; line-height: normal; font-family: Arial, Verdana;"><br></div><div><span style="font-family: Arial, Verdana; font-size: small;">fp-includes\smarty\plugins\modifier.count_words.php:</span></div><div><span style="font-family: Arial, Verdana; font-size: small;"><br></span></div><div><span style="font-size: small;"><span style="font-family: Courier New;">function smarty_modifier_count_words($string)</span></span></div><div><span style="font-family: Courier New;">{</span></div><div><span style="font-family: Courier New;">/*</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; // split text by ' ',\r,\n,\f,\t</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; $split_array = preg_split('/\s+/',$string);</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; // count matches that contain alphanumerics</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; $word_count = preg_grep('/[a-zA-Z0-9\\x80-\\xff]/', $split_array);</span></div><div><span style="font-family: Courier New;"><br></span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; return count($word_count);</span></div><div><span style="font-family: Courier New;">*/</span></div><div><span style="font-family: Courier New;"><br></span></div><div><span style="font-family: Courier New;">// Long file aware version by LAttilaD</span></div><div><span style="font-family: Courier New;"><br></span></div><div><span style="font-family: Courier New;"><span class="Apple-tab-span" style="white-space:pre">	</span>$string=str_replace(' ', ' ', $string, $spaces);</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; $string=str_replace("\n", "\n", $string, $enters);</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; return $spaces+$enters;</span></div><div><span style="font-family: Courier New;">}</span></div><div style="font-family: Arial, Verdana;"><br></div><div style="font-family: Arial, Verdana;">I know this version isn’t as accurate as the old one, but it won’t stop at a longer file.</div><div style="font-family: Arial, Verdana;"><br></div><div><span style="font-family: Arial, Verdana;">fp-includes\smarty\plugins\modifier.count_characters.php:</span></div><div><span style="font-family: Arial, Verdana;"><br></span></div><div><div><span style="font-family: Courier New;">function smarty_modifier_count_characters($string, $include_spaces = false)</span></div><div><span style="font-family: Courier New;">{</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; if ($include_spaces)</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; &nbsp; &nbsp;return(strlen($string));</span></div><div><span style="font-family: Courier New;"><br></span></div><div><span style="font-family: Courier New;">// &nbsp; &nbsp;return preg_match_all("/[^\s]/",$string, $match);</span></div><div><span style="font-family: Courier New;"><br></span></div><div><span style="font-family: Courier New;">// Long file aware version by LAttilaD</span></div><div><span style="font-family: Courier New;"><span class="Apple-tab-span" style="white-space:pre">	</span>$string=str_replace(' ', ' ', $string, $spaces);</span></div><div><span style="font-family: Courier New;">&nbsp; &nbsp; return strlen($string)-$spaces;</span></div><div><span style="font-family: Courier New;"><br></span></div><div><span style="font-family: Courier New;">}</span></div><div style="font-family: Arial, Verdana;"><br></div></div>]]></description>
   </item>
   <item>
      <title>What&#039;s you dream FlatPress Forum like?</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1784/what039s-you-dream-flatpress-forum-like</link>
      <pubDate>Fri, 14 Sep 2012 11:08:53 -0400</pubDate>
      <dc:creator>Marc</dc:creator>
      <guid isPermaLink="false">1784@/vanilla2/discussions</guid>
      <description><![CDATA[I'm starting this thread in an attempt to get an idea on how you guys feel about the FlatPress Forum. <br><br>What do you like and dislike right now? <br><br>Do you think it would be possible to improve the forum in some way or another? What kind of new features would you enjoy to use on here? Do you think the forum is currently lacking some functionality, features? For example, would you like to be able to share threads on Facebook/Twitter in one click, see who's online, post a poll, update your personal status, use smilies, etc..?<br><br>Post your suggestions and feedback here. What do you think would move this community a step further? :)<br><br>Marc. :)<br>]]></description>
   </item>
   <item>
      <title>And that&#039;s why I had chosen MooTools in the first place</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1589/and-that039s-why-i-had-chosen-mootools-in-the-first-place</link>
      <pubDate>Sun, 08 Jan 2012 17:39:19 -0500</pubDate>
      <dc:creator>NoWhereMan</dc:creator>
      <guid isPermaLink="false">1589@/vanilla2/discussions</guid>
      <description><![CDATA[Too bad everybody develops for jQuery.<div><a rel="nofollow" href="https://groups.google.com/group/comp.lang.javascript/msg/37cb11852d7ca75c?hl=en&amp;">https://groups.google.com/group/comp.lang.javascript/msg/37cb11852d7ca75c?hl=en&amp;</a><br></div><div><br></div><div>(to be fair, this is a post from 2009)</div>]]></description>
   </item>
   <item>
      <title>Have a nice festive season</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1576/have-a-nice-festive-season</link>
      <pubDate>Mon, 19 Dec 2011 15:39:47 -0500</pubDate>
      <dc:creator>laborix</dc:creator>
      <guid isPermaLink="false">1576@/vanilla2/discussions</guid>
      <description><![CDATA[<p>All together, have a nice festive season.</p><p>Laborix</p>]]></description>
   </item>
   <item>
      <title>Spam on the forum</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1502/spam-on-the-forum</link>
      <pubDate>Wed, 31 Aug 2011 07:35:29 -0400</pubDate>
      <dc:creator>pierovdfn</dc:creator>
      <guid isPermaLink="false">1502@/vanilla2/discussions</guid>
      <description><![CDATA[There is more and more spam on this forum...<br>I've found an <a rel="nofollow" href="http://vanillaforums.org/addon/593/vanilla-antispam">anti spam plugin</a> for Vanilla that uses Akismet and StopForumSpam; <a rel="nofollow" href="/vanilla2/profile/NoWhereMan">@NoWhereMan</a>: why don't you active it?<br><br>However it's very unhappy seeing spammers that uses the forum just for they links....]]></description>
   </item>
   <item>
      <title>Please help.</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1233/please-help-</link>
      <pubDate>Wed, 13 Oct 2010 04:00:53 -0400</pubDate>
      <dc:creator>illusivelove</dc:creator>
      <guid isPermaLink="false">1233@/vanilla2/discussions</guid>
      <description><![CDATA[<br>]]></description>
   </item>
   <item>
      <title>IIS and Flatpress 0.1010 Sotto Voce</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1266/iis-and-flatpress-0-1010-sotto-voce</link>
      <pubDate>Thu, 11 Nov 2010 15:34:00 -0500</pubDate>
      <dc:creator>laborix</dc:creator>
      <guid isPermaLink="false">1266@/vanilla2/discussions</guid>
      <description><![CDATA[Here some results from a quick test.<br /><br />Test area 1: Windows Server 2003 (32bit), IIS 6.0, PHP 5.3.3 and MS Fastcgi 1.5<br />Test area 2: Windows Server 2008 (32bit), IIS 7.0, PHP 5.3.3 and Windows Server 2008 build in Fastcgi<br /><br />Quick test with:<br />Setup, create category and entries, using PrettyUrls, search, Admin panel configuration, sorting widgets and few other things.<br /><br />On both servers, Flatpress 0.1010 Sotto Voce work fine. No errors or notices will came up. I will do more tests on this servers, if I have time for that.<br /><br /><br />]]></description>
   </item>
   <item>
      <title>Community with flatpress</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1315/community-with-flatpress</link>
      <pubDate>Tue, 11 Jan 2011 14:03:45 -0500</pubDate>
      <dc:creator>LeG</dc:creator>
      <guid isPermaLink="false">1315@/vanilla2/discussions</guid>
      <description><![CDATA[Hi, my community in www.mirc4fun.org offer at the members the possibility to have a blog based in flatpress, but i've a question, to have the last post of each blog in site index how do i do ?]]></description>
   </item>
   <item>
      <title>How can i embed a youtube video on a flatpress bloq?</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1351/how-can-i-embed-a-youtube-video-on-a-flatpress-bloq</link>
      <pubDate>Wed, 09 Mar 2011 00:57:02 -0500</pubDate>
      <dc:creator>Unicorn</dc:creator>
      <guid isPermaLink="false">1351@/vanilla2/discussions</guid>
      <description><![CDATA[that is my question. can someone help me?]]></description>
   </item>
   <item>
      <title>Spammers posting on this forum</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1143/spammers-posting-on-this-forum</link>
      <pubDate>Fri, 30 Jul 2010 09:27:47 -0400</pubDate>
      <dc:creator>Stanley</dc:creator>
      <guid isPermaLink="false">1143@/vanilla2/discussions</guid>
      <description><![CDATA[I've seen a couple of spammers recently - <a rel="nofollow" href="http://www.flatpress.org/forums/comments.php?DiscussionID=1098&amp;page=1#Item_38">this is the latest one</a>...<br><br>... and <a rel="nofollow" href="http://www.flatpress.org/forums/comments.php?DiscussionID=1139&amp;page=1#Item_1">here's an earlier one</a><br><br>Is there any way to tighten up on how people sign up? From memory I don't think there was any need to click a link in a confirmation email, I just filled in the form and could start posting.<br><br>It might be good idea to have a "Report Spam" link on each post, but I don't know if Vanilla lets you do that?]]></description>
   </item>
   <item>
      <title>Issue Categories and edit post</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1237/issue-categories-and-edit-post</link>
      <pubDate>Thu, 21 Oct 2010 17:13:43 -0400</pubDate>
      <dc:creator>fastidioso</dc:creator>
      <guid isPermaLink="false">1237@/vanilla2/discussions</guid>
      <description><![CDATA[Hi,<br />I upgraded to new version FlatPress 0.1010 RC and:<br /><br />If I edit the post, the check box of categories is not signed.<br />If I see the post after edit, the categories are shown correctly.<br /><br />]]></description>
   </item>
   <item>
      <title>Mark all as read</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1086/mark-all-as-read</link>
      <pubDate>Sat, 15 May 2010 23:28:51 -0400</pubDate>
      <dc:creator>Mischa</dc:creator>
      <guid isPermaLink="false">1086@/vanilla2/discussions</guid>
      <description><![CDATA[Would it be possible to install the &quot;Mark As Read&quot; plugin to Vanilla. It&#039;s a little tricky now to read through the postings.]]></description>
   </item>
   <item>
      <title>[ita] che ne dite?</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1196/ita-che-ne-dite</link>
      <pubDate>Wed, 01 Sep 2010 12:26:27 -0400</pubDate>
      <dc:creator>daleo</dc:creator>
      <guid isPermaLink="false">1196@/vanilla2/discussions</guid>
      <description><![CDATA[Si pu]]></description>
   </item>
   <item>
      <title>Your jewellery business</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1175/your-jewellery-business</link>
      <pubDate>Thu, 19 Aug 2010 10:24:30 -0400</pubDate>
      <dc:creator>Stanley</dc:creator>
      <guid isPermaLink="false">1175@/vanilla2/discussions</guid>
      <description><![CDATA[Private discussions ain't quite as private as they used to be on Vanilla 1.]]></description>
   </item>
   <item>
      <title>Ummes</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1141/ummes</link>
      <pubDate>Wed, 28 Jul 2010 20:12:35 -0400</pubDate>
      <dc:creator>marcofbb</dc:creator>
      <guid isPermaLink="false">1141@/vanilla2/discussions</guid>
      <description><![CDATA[Hola,<br />
Hoy les vengo a precentar mi nuevo proyecto &quot;Ummes&quot; que va a tratar sobre el desarrollo web y ocio.<br />
Apenas hace un d]]></description>
   </item>
   <item>
      <title>Taking a break</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1039/taking-a-break</link>
      <pubDate>Tue, 23 Mar 2010 21:36:17 -0400</pubDate>
      <dc:creator>NoWhereMan</dc:creator>
      <guid isPermaLink="false">1039@/vanilla2/discussions</guid>
      <description><![CDATA[I'll be away from <em>teh internetz</em> for the next few days, so don't break anything around here, 'mmkay?<br><br>I'll be back on Monday. :)]]></description>
   </item>
   <item>
      <title>Unlocked Mobile help</title>
      <link>http://www.flatpress.org/vanilla2/discussion/1139/unlocked-mobile-help</link>
      <pubDate>Mon, 26 Jul 2010 21:00:42 -0400</pubDate>
      <dc:creator>densuperr</dc:creator>
      <guid isPermaLink="false">1139@/vanilla2/discussions</guid>
      <description><![CDATA[Hai...I need One help....I am using the Nokia N95 model mobile...I unlocked the mobile Recently using the Unlock code,In the site http://www.superunlockcodes.com/nokia/rs12wp8/  i got the Unlock code at low cost and unlocked the mobile.Now i need which Network can i use..I unlocked my mobile from T-Mobile Network USA..Now i need which network in USA Provides the Plan Low call,text &amp; Data...]]></description>
   </item>
   <item>
      <title>Have a nice festive season</title>
      <link>http://www.flatpress.org/vanilla2/discussion/940/have-a-nice-festive-season</link>
      <pubDate>Sat, 12 Dec 2009 22:03:03 -0500</pubDate>
      <dc:creator>laborix</dc:creator>
      <guid isPermaLink="false">940@/vanilla2/discussions</guid>
      <description><![CDATA[The first snow is falling, the candle burn and christmas isn't far away. <br />All together, have a nice festive season.]]></description>
   </item>
   <item>
      <title>bad redirect in sf.net page</title>
      <link>http://www.flatpress.org/vanilla2/discussion/932/bad-redirect-in-sf-net-page</link>
      <pubDate>Wed, 09 Dec 2009 03:49:33 -0500</pubDate>
      <dc:creator>viktor</dc:creator>
      <guid isPermaLink="false">932@/vanilla2/discussions</guid>
      <description><![CDATA[just go to flatpress.sf.net, and it will try to redirect you to the old address, flatpress.nowhereland.it. i guess it needs an update.]]></description>
   </item>
   <item>
      <title>Why do you use Vanilla?</title>
      <link>http://www.flatpress.org/vanilla2/discussion/924/why-do-you-use-vanilla</link>
      <pubDate>Fri, 04 Dec 2009 18:03:02 -0500</pubDate>
      <dc:creator>Centaur</dc:creator>
      <guid isPermaLink="false">924@/vanilla2/discussions</guid>
      <description><![CDATA[I was just wondering why you prefer Vanilla forum. I have been using these forums here on FP for a few days now, but it just feels so much different from the usual forums on other sites. <br />
<br />
Can you please tell me what makes Vanilla so good. I like MyBB as it is more traditional to other forums yet better (just my opinion).<br />
<br />
Thanks.]]></description>
   </item>
   <item>
      <title>Firefox Help</title>
      <link>http://www.flatpress.org/vanilla2/discussion/806/firefox-help</link>
      <pubDate>Mon, 24 Aug 2009 22:20:56 -0400</pubDate>
      <dc:creator>Finlay</dc:creator>
      <guid isPermaLink="false">806@/vanilla2/discussions</guid>
      <description><![CDATA[Hallo,<br>I often use Firefox, a great browser, and sometimes go to Tools - Options - Security - saved password to read and erase the passwords for the sites that I visit.<br>Do you know if there is a way to shorten this path, maybe insert something in the toolbar to speed up this task?<br>Thank you <br><br><br><br>__________________<br><br>You have never see <a rel="nofollow" href="http://www.giftideashop.net/children-gifts.html">childrens gifts</a> like these? (<a rel="nofollow" href="http://www.idee-regalo.biz/">idee regalo</a> on italian or <a rel="nofollow" href="http://www.ideescadeauxoriginaux.com/">id</a>]]></description>
   </item>
   <item>
      <title>I Made New Website Called....</title>
      <link>http://www.flatpress.org/vanilla2/discussion/765/i-made-new-website-called-</link>
      <pubDate>Tue, 14 Jul 2009 23:37:42 -0400</pubDate>
      <dc:creator>360WorldTeam</dc:creator>
      <guid isPermaLink="false">765@/vanilla2/discussions</guid>
      <description><![CDATA[I Made New Website Called <a rel="nofollow" href="http://www.softwareforyou.110mb.com">Software4U</a><br>URL: <a rel="nofollow" href="http://www.softwareforyou.110mb.com">http://www.softwareforyou.110mb.com</a><br>And The Website Is About Getting All The Free Software You Want! But You Have To Request It In Comments!]]></description>
   </item>
   <item>
      <title>flatpress.nowhereland.it</title>
      <link>http://www.flatpress.org/vanilla2/discussion/426/flatpress-nowhereland-it</link>
      <pubDate>Tue, 30 Sep 2008 14:16:05 -0400</pubDate>
      <dc:creator>DotMG</dc:creator>
      <guid isPermaLink="false">426@/vanilla2/discussions</guid>
      <description><![CDATA[Search engines lead to the old site flatpress.nowhereland.it/flatpress which issues an error.<br />
That could be a good idea to redirect this old site to flatpress.org]]></description>
   </item>
   <item>
      <title>Nice gag in Flatpress</title>
      <link>http://www.flatpress.org/vanilla2/discussion/413/nice-gag-in-flatpress</link>
      <pubDate>Fri, 19 Sep 2008 22:31:15 -0400</pubDate>
      <dc:creator>laborix</dc:creator>
      <guid isPermaLink="false">413@/vanilla2/discussions</guid>
      <description><![CDATA[I found a nice gag in Flatpress after adding in SVN 180 the "List Postings in categories". It is not a failure, it is not a bug, it is a gag:<br /><br />If you add all Postings listed in categories [SVN] and then you use the hidden feature "stats", so you get a different number of postings. I'm thinking "Is there something wrong?". No.<br /><br />After counting all my posting I get the number listed by the "stats" feature. Now I compare it against the postings listed in categories. Yeah, I have some posting in two or more categories, hehe...<br /><br />So all is ok, but in the first minute, I think I should go to bed...]]></description>
   </item>
   <item>
      <title>inwarramspu</title>
      <link>http://www.flatpress.org/vanilla2/discussion/407/inwarramspu</link>
      <pubDate>Sun, 14 Sep 2008 14:11:35 -0400</pubDate>
      <dc:creator>inwarramspu</dc:creator>
      <guid isPermaLink="false">407@/vanilla2/discussions</guid>
      <description><![CDATA[00821. Personal Loan Utah <br />
04964. Unsecured Personal Loans With Bad Credit <br />
07083. How Do I Get A Free Credit Report <br />
07976. Secured Personal Loan <br />
08019. High Risk Bad Credit Personal Unsecured Loans <br />
08720. Free Gospel Ringtones For Verizon Phones <br />
11352. Canadian Credit Free Instant Report <br />
11691. Cheap Airline Tickets To Amsterdam]]></description>
   </item>
   </channel>
</rss>