<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title></title>
        <link>https://interactivetools.com/forum/forum-search.php?k=user%3Aaev</link>
        <description></description>
        <pubDate>Wed, 08 Apr 2026 16:14:20 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aaev&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Modify system fields createdDate and updatedDate</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239078#post2239078</link>
          <description><![CDATA[<p>Hi,</p>
<p>can we somehow edit/modify the system fields createdDate and updatedDate without editing the MySQL database?</p>
<p>-aev-</p>
]]></description>
          <pubDate>Tue, 21 Jun 2016 02:11:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239078#post2239078</guid>
        </item>
                <item>
          <title>Navigation Dropdown Coding</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233828#post2233828</link>
          <description><![CDATA[<p>Hi,</p>
<p>here is another method Dave showed me some time ago. I use this on all sites we create, works very good and is easy to adapt.</p>
<p>Remove your existing code in <span style="color:#800000;">RED</span> and replace with new code in <span style="color:#0000ff;">BLUE</span> in the list (load records) code. For the "customMenuUlAttr" and "customMenuLiAttr" I included more code than you need for your case just to some some examples. You need the one marked in <span style="color:#0000ff;">BLUE</span>.</p>
<p><code>  // load records<br />   list($pagesRecords, $pagesMetaData) = getCategories(array(  <br />     'tableName'   =&gt; 'pages',<br />     'defaultCategory' =&gt; '', // Enter 'first', a category number, or leave blank '' for none<br />     'rootCategoryNum' =&gt; '0', // Only categories _below_ this one will be shown (defaults to 0 for all)<br />     'categoryFormat' =&gt; 'showall', // showall, onelevel, twolevel, breadcrumb<br />     <span style="color:#800000;">'ulAttributes' =&gt; " class='dropdown' ", // add html attributes to &lt;ul&gt; tags</span><br />     <span style="color:#0000ff;">'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);</span><br /><span style="color:#0000ff;">     'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);</span><br />     'ignoreHidden' =&gt; true, // don't hide records with hidden flag set<br />     'useSeoUrls' =&gt; true, <br />   ));<br /><br />   // customMenuUlAttr<br />   function customMenuUlAttr($category) {<br />     $id = "id{$category['num']}";<br />     $class = "depth{$category['depth']}";<br />     return "class='$class'";<br />   }<br /><br /><br />   // customMenuLiAttr<br />   function customMenuLiAttr($category) {<br />     $id = "id{$category['num']}";<br />     $class = "clickable depth{$category['depth']}";<br />     if ($category['depth'] &lt; 1) { $class .= " isTop"; }<br />     if ($category['depth'] &gt; 0) { $class .= " isChild"; }<br />     if ($category['_isSelectedBranch']) { $class .= " isSelectedBranch"; }<br />     if ($category['_isSelected']) { $class .= " isSelected"; }<br />     if ($category['_isChildSelected']) { $class .= " childSelected"; }<br />     <span style="color:#0000ff;">if ($category['_hasChild']) { $class .= " hasChild"; }</span><br />     return "class='$id $class'";<br />   }</code></p>
<p>Now you can simply add if statements for any of these fields to add classes:</p>
<p>_isSelected<br />_isAncestorSelected<br />_isDescendantSelected<br />_isSelectedBranch<br />_isBreadcrumb<br />_hasParent<br />_hasChild<br />_isFirstChild<br />_isLastChild<br />_hasSiblings<br />_isSiblingSelected<br />_isParentSelected<br />_isChildSelected</p>
<p>-aev-</p>]]></description>
          <pubDate>Mon, 28 Apr 2014 02:16:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233828#post2233828</guid>
        </item>
                <item>
          <title>Gecoder - Open map infowindow from external link</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233310#post2233310</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>I added your changes and it works as expected.</p>
<p>Thanks!</p>

<p>-aev-</p>
]]></description>
          <pubDate>Wed, 26 Feb 2014 01:48:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233310#post2233310</guid>
        </item>
                <item>
          <title>Gecoder - Open map infowindow from external link</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233240#post2233240</link>
          <description><![CDATA[<p>Hi Ross,</p>
<p>yes that is what I'm looking to do, but I want to trigger the infowindow from an external link. Like this:</p>
<p><a href="http://www.geocodezip.com/v3_MW_example_linktomap.html" rel="nofollow">http://www.geocodezip.com/v3_MW_example_linktomap.html</a></p>

<p>I just need some guidelines how to transfer this example to the pages provided with the geocoder plugin.</p>

<p>-aev-</p>
]]></description>
          <pubDate>Tue, 18 Feb 2014 11:54:21 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233240#post2233240</guid>
        </item>
                <item>
          <title>Gecoder - Open map infowindow from external link</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233218#post2233218</link>
          <description><![CDATA[<p>Hi,</p>
<p>we just bought the Gecoder addon and so far it is working great for gecoding and getting a map with multiple tags up and running, but we would like to add a feature not provided by the included example page.</p>
<p>We want to make the addresses we output to our page from a Multi Record CMSB section have a link or onclick event to open the corresponding "infowindow" on the Google map. Has anyone done this? Code or tips are greatly appreciated :)</p>
<p>-aev-</p>]]></description>
          <pubDate>Fri, 14 Feb 2014 01:04:30 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233218#post2233218</guid>
        </item>
                <item>
          <title>getPrevAndNextRecords() bug</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232951#post2232951</link>
          <description><![CDATA[<p>Hi,</p>
<p>I saw it and have implemented the fix. I just wanted to say that I think this should be addressed in CMS Builder, I don't like that I have to remember to implement this fix the next time we are using the Prev/Next feature.</p>
<p>-aev-</p>
]]></description>
          <pubDate>Tue, 21 Jan 2014 08:50:07 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232951#post2232951</guid>
        </item>
                <item>
          <title>getPrevAndNextRecords() bug</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232918#post2232918</link>
          <description><![CDATA[<p>Hi,</p>
<p>I just ran into this issue:</p>
<p><a href="http://www.interactivetools.com/forum/forum-posts.php?postNum=2231087" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?postNum=2231087</a></p>
<p>It was not mentioned in the post, so I hope you file this as a bug and address it in a future update.</p>
<p>-aev-</p>
]]></description>
          <pubDate>Thu, 16 Jan 2014 07:18:18 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232918#post2232918</guid>
        </item>
                <item>
          <title>pdf with preview image</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232916#post2232916</link>
          <description><![CDATA[<p>I think this would work great for an upload field. We can than run your code to produce and present the thumbnails (maybe there should be some kind of cache). But I was more thinking about a wysiwyg field, then the client must know the url to manually insert the thumbnail and then link it to the PDF. For most clients this would be too technical and difficult.</p>
<p>But thanks for your code, it is an interesting starting point, but I hope Dave and his team will implement this into CMSB.</p>
<p>-aev-</p>
]]></description>
          <pubDate>Thu, 16 Jan 2014 04:32:07 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232916#post2232916</guid>
        </item>
                <item>
          <title>pdf with preview image</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232914#post2232914</link>
          <description><![CDATA[<p>This looks interesting, but it would great if this was integrated into CMSB making the thumbnails available to our clients by choosing thumb 1,2,3 or 4 like they can with images today.</p>
<p>Do you build sites for clients? If yes can you briefly describe the steps they have to do use the solution you linked to.</p>
<p>Thanks!</p>
<p>-aev-</p>
]]></description>
          <pubDate>Thu, 16 Jan 2014 02:21:34 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232914#post2232914</guid>
        </item>
                <item>
          <title>pdf with preview image</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232912#post2232912</link>
          <description><![CDATA[<p>Hi,</p>
<p>we are also very interested in a feature like this. We have many clients uploading PDFs of brochures and manuals, and it would be great to be able to present a thumbnail/preview from these uploads.</p>
<p>Did some googling and it seems like ImageMagick/Ghostscript can do this, I'm unsure if GD is capable.</p>
<p>Maybe Interactivetools can extend CMSB or create a plugin to do this?</p>
<p>-aev-</p>
]]></description>
          <pubDate>Thu, 16 Jan 2014 00:29:47 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232912#post2232912</guid>
        </item>
                <item>
          <title>Update multiple records</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232748#post2232748</link>
          <description><![CDATA[<p>Hi,</p>
<p>the prices are usually updated once a year. The CSV addons could be a solution, I'll take a look. Thanks!</p>
<p>-aev-</p>
]]></description>
          <pubDate>Thu, 19 Dec 2013 01:47:56 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232748#post2232748</guid>
        </item>
                <item>
          <title>Update multiple records</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232728#post2232728</link>
          <description><![CDATA[<p>Hi,</p>
<p>we need to update 500 records with new numbers (prices), does anyone have great tip for speeding up this task?</p>
<p>It would be great to edit the records directly in the CMSB admin/list-view with a ajaxified-apply button for each record. Or a save button for a big editable admin page, but I guess that would be a bit complicated. Can IT make any of these features through consulting?</p>
<p>Another approach that could work would be a variant of the "Save &amp; Copy" plugin called "Save &amp; Edit next". Can that be done?</p>
<p>-aev-</p>
]]></description>
          <pubDate>Wed, 18 Dec 2013 05:33:06 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232728#post2232728</guid>
        </item>
                <item>
          <title>Change the breadcrumbs separator</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232631#post2232631</link>
          <description><![CDATA[<p>Another breadcrumb related question:</p>
<p>Can we make the breadcrumb clickable?</p>
<p>Home : Products : Product-1</p>
<p>For the breadcrumb above we would like to have three individual links; "Home", "Products" and "Product-1".  The last one "Product-1" may be redundant as the user would most likely be on that page :)</p>

<p>-aev-</p>
]]></description>
          <pubDate>Thu, 05 Dec 2013 11:01:14 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232631#post2232631</guid>
        </item>
                <item>
          <title>Change the breadcrumbs separator</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232619#post2232619</link>
          <description><![CDATA[<p>Hi,</p>
<p>is it possible to change the breadcrumbs separator from ":" to another character?</p>
<p>-aev-</p>
]]></description>
          <pubDate>Wed, 04 Dec 2013 01:52:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232619#post2232619</guid>
        </item>
                <item>
          <title>where filter for Category sections</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232616#post2232616</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>I'm already using the "skip inside foreach" method, but sometimes depending on the task, it would be easier to do it with a where filter.</p>
<p>Thanks for explaining my options.</p>
<p>-aev-</p>
]]></description>
          <pubDate>Tue, 03 Dec 2013 14:18:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232616#post2232616</guid>
        </item>
                <item>
          <title>where filter for Category sections</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232544#post2232544</link>
          <description><![CDATA[<p>Hi,</p>
<p>I get an error when trying to use the 'where' option for a Category section. How can I filter a Category section?</p>

<p>-aev-</p>
]]></description>
          <pubDate>Fri, 29 Nov 2013 01:14:57 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232544#post2232544</guid>
        </item>
                <item>
          <title>Upload error 401</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232490#post2232490</link>
          <description><![CDATA[<p>Hi,</p>
<p>I guess this could solve your problem:</p>
<p><a href="http://forrst.com/posts/Allowing_Flash_Uploads_Through_Apache_Authentica-CT3" rel="nofollow">http://forrst.com/posts/Allowing_Flash_Uploads_Through_Apache_Authentica-CT3</a></p>

<p>-aev-</p>
]]></description>
          <pubDate>Mon, 25 Nov 2013 05:11:57 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232490#post2232490</guid>
        </item>
                <item>
          <title>what are you cooking?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232362#post2232362</link>
          <description><![CDATA[<p>Any timeframe for upgrading to TinyMCE 4? Or are you looking for a new editor?</p>
<p>-aev-</p>
]]></description>
          <pubDate>Tue, 12 Nov 2013 00:23:04 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232362#post2232362</guid>
        </item>
                <item>
          <title>Two category sections on the same page using getCategories.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231750#post2231750</link>
          <description><![CDATA[<p>Hi,</p>
<p>I have a new problem similar to the one above.</p>
<p>On a another site I'm working on we have 4 category sections, but we only display one at a time. I load the pages with this url:</p>
<p><a href="http://www.example.com/index.php?nav=2" rel="nofollow">http://www.example.com/index.php?nav=2</a></p>
<p>And pass the nav value like this:</p>
<p><code>list($categoryRecords, $selectedCategory) = getCategories(array( <br />  'tableName' =&gt; mysql_escapef(@$getNav), <br />  'defaultCategory' =&gt; 'first', // Enter 'first', a category number, or leave blank '' for none<br />  'categoryFormat' =&gt; 'onelevel', // showall, onelevel, twolevel <br />  'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);<br />  'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);<br />  'selectedCategoryNum' =&gt; mysql_escapef(@$getRecord), <br /> ));<br /></code></p>
<p>This work fine, the problem is that since this page doesn't have the url variable like id=34 I use to pass to $getRecord, this getCategories call treats my nav=2 as the record number. We don't want this, we would like the category to load with the 'first' cat selected.</p>
<p>To sum this up; how can we load a category with the first category selected, not cat. num=1 but categoryRecords[0] (this can be cat. num=3).</p>
<p>-aev-</p>]]></description>
          <pubDate>Fri, 13 Sep 2013 05:49:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231750#post2231750</guid>
        </item>
                <item>
          <title>Two category sections on the same page using getCategories.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231730#post2231730</link>
          <description><![CDATA[<p>HI,</p>
<p>thanks! <span><strong>'selectedCategoryNum' =&gt; '0',</strong> was the missing piece I needed for getting this to work!</span></p>
<p><span>Here is the code I ended up using:</span></p>
<p><code>if ($getSection == "nav") {<br /><br />  // Menu 1 (selected)<br />  list($categoryRecords, $selectedCategory) = getCategories(array( <br />    'tableName' =&gt; 'nav', <br />    'defaultCategory' =&gt; 'first', // Enter 'first', a category number, or leave blank '' for none<br />    'categoryFormat' =&gt; 'onelevel', // showall, onelevel, twolevel <br />    'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);<br />    'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);<br />    'selectedCategoryNum' =&gt; mysql_escapef(@$getRecord), <br />  ));<br /><br />  // Menu 2<br />  list($categoryRecords2) = getCategories(array( <br />    'tableName' =&gt; 'nav2', <br />    'defaultCategory' =&gt; '', // Enter 'first', a category number, or leave blank '' for none<br />    'categoryFormat' =&gt; 'onelevel', // showall, onelevel, twolevel <br />    'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);<br />    'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);<br />    'selectedCategoryNum' =&gt; '0'<br />  ));<br /><br />} elseif  ($getSection == "nav2") {<br /><br />  // Menu 1<br />  list($categoryRecords) = getCategories(array( <br />    'tableName' =&gt; 'nav',<br />    'defaultCategory' =&gt; '', // Enter 'first', a category number, or leave blank '' for none<br />    'categoryFormat' =&gt; 'onelevel', // showall, onelevel, twolevel <br />    'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);<br />    'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);<br />    'selectedCategoryNum' =&gt; '0' <br />  ));<br /><br />  // Menu 2 (selected)<br />  list($categoryRecords2, $selectedCategory ) = getCategories(array( <br />    'tableName' =&gt; 'nav2', <br />    'defaultCategory' =&gt; 'first', // Enter 'first', a category number, or leave blank '' for none<br />    'categoryFormat' =&gt; 'onelevel', // showall, onelevel, twolevel <br />    'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);<br />    'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);<br />    'selectedCategoryNum' =&gt; mysql_escapef(@$getRecord), <br />  ));<br /><br />}<br /></code></p>
<p>-aev-</p>]]></description>
          <pubDate>Mon, 09 Sep 2013 15:13:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231730#post2231730</guid>
        </item>
                <item>
          <title>Two category sections on the same page using getCategories.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231728#post2231728</link>
          <description><![CDATA[<p>Hi,</p>
<p>when a $categoryRecords record is loaded I also get a "[_isSelected] =&gt; 1" on the record with the same record-num in $categoryRecords2 even if I load $categoryRecords2 with "categoryFormat =&gt; onelevel" and no "selectedCategoryNum" set.</p>
<p>As you suggest I could workaround this by changing my code for displaying $categoryRecords2, but I would rather know if I can adjust getCategories and keep the same code for displaying my categories.</p>
<p>Is there any documentation explaining all the details for using getCategories?</p>
<p>-aev-</p>]]></description>
          <pubDate>Mon, 09 Sep 2013 13:33:03 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231728#post2231728</guid>
        </item>
                <item>
          <title>Two category sections on the same page using getCategories.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231715#post2231715</link>
          <description><![CDATA[<p>Hi,</p>
<p>I'm trying to use two category sections on the same page, making the active one display as "onelevel" and the other to only list it's top-level.</p>
<p>Here is my code so far:</p>
<p><code>if ($getSection == "nav") {<br /><br />  // nav1<br />  list($categoryRecords, $selectedCategory) = getCategories(array( <br />  'tableName' =&gt; 'nav', <br />  'defaultCategory' =&gt; 'first', // Enter 'first', a category number, or leave blank '' for none<br />  'categoryFormat' =&gt; 'onelevel', // showall, onelevel, twolevel <br />  'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);<br />  'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);<br />  'selectedCategoryNum' =&gt; mysql_escapef(@$getRecord), <br />  ));<br /><br />  // nav2<br />  list($categoryRecords2) = getCategories(array( <br />  'tableName' =&gt; 'nav2', <br />  'defaultCategory' =&gt; '', // Enter 'first', a category number, or leave blank '' for none<br />  'categoryFormat' =&gt; 'onelevel', // showall, onelevel, twolevel <br />  'ulAttributesCallback' =&gt; 'customMenuUlAttr', // ADVANCED: custom function to return ul attributes, eg: myUlAttr($category);<br />  'liAttributesCallback' =&gt; 'customMenuLiAttr', // ADVANCED: custom function to return li attributes, eg: myLiAttr($category);<br />  ));<br /><br />} else {<br /><br />  ..the same as above but swap 'nav' and 'nav2'<br /><br />}</code></p>

<p>The problem is that the second category menu get's selected in the same way as the primary, showing like a selected 'onelevel' menu. Any suggestions?</p>

<p>-aev-</p>
]]></description>
          <pubDate>Mon, 09 Sep 2013 07:04:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231715#post2231715</guid>
        </item>
                <item>
          <title>Integrating a Shopping Cart into CMSB</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231542#post2231542</link>
          <description><![CDATA[<p>Hi,</p>
<p>great suggestion, we would also appreciate to know what have and can be done through Interactivetools' consulting.</p>

<p>-aev-</p>
]]></description>
          <pubDate>Thu, 15 Aug 2013 22:48:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231542#post2231542</guid>
        </item>
                <item>
          <title>spambotEmailProtector not using &apos;jsLocation&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231146#post2231146</link>
          <description><![CDATA[<p>Hi,</p>
<p>on this page spambotEmailProtector is not putting the mailto inside a Javascript 'window.location' even if the "jsLocation" is set to true. The result is non-working email addresses when clicking on them, at least on my Mac using Outlook.</p>
<p><a href="http://mrb.no/?s=nav&amp;r=Om-oss-Hvem-er-vi-10" rel="nofollow">http://mrb.no/?s=nav&amp;r=Om-oss-Hvem-er-vi-10</a></p>
<p>The mailto's are created with this code:</p>
<p><code>&lt;a href="mailto:&lt;?php echo $record['mail'] ?&gt;"&gt;&lt;?php echo $record['mail'] ?&gt;&lt;/a&gt;</code></p>
<p>If I create a mailto using the wysiwyg editor on the same site the 'window.location' is used and everything works fine.</p>
<p>Anyone seen this before? Any suggestions?</p>
<p>-aev-</p>]]></description>
          <pubDate>Mon, 08 Jul 2013 09:07:18 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231146#post2231146</guid>
        </item>
                <item>
          <title>Increase number of thumbnails</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229949#post2229949</link>
          <description><![CDATA[<p>Hi,</p>
<p>totally agree, our experience is the same.</p>
<p>-aev-</p>
]]></description>
          <pubDate>Wed, 20 Mar 2013 04:41:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229949#post2229949</guid>
        </item>
              </channel>
    </rss>
  