Add Poll
 
Options: Text Color Split Pie
 
 
 
 
 
 
 
 
Poll Comment:
Max 500 characters. Remaining characters:
days and minutes. Leave it blank if you don't want to set it now.

Please type the characters exactly as they appear in the image,
without the first 2 and last 2 characters.
The characters must be typed in the same order,
and they are case-sensitive.
Open Preview Preview

You can resize the textbox by dragging the right or bottom border.
Off Topic Comment Insert Spoiler
Insert Hyperlink Insert FTP Link Insert Image Insert E-mail Insert Media Insert Table Insert Table Row Insert Table Column Insert Horizontal Rule Insert Teletype Insert Code Insert Quote Edited Superscript Subscript Insert List /me - my name Insert Marquee Insert Timestamp No Parse
Bold Italicized Underline Insert Strikethrough Highlight
                       
Change Text Color
Insert Preformatted Text Left Align Centered Right Align
resize_wb
resize_hb







Max 5000 characters. Remaining characters:
Text size: %
More Smilies
View All Smilies
Collapse additional features Collapse/Expand additional features Smiley Wink Cheesy Grin Angry Sad Shocked Cool Huh Roll Eyes Tongue Embarrassed Lips Sealed Undecided Kiss Cry
Topic Summary - Displaying 10 post(s). Click here to show all
Posted by: Dandello
Posted on: Mar 3rd, 2015 at 6:07pm
Beer might have been safer - I'd have known I was impaired and quit while I was ahead instead of trying to get clever.  :Smiley
Posted by: ThM
Posted on: Mar 3rd, 2015 at 6:04pm
Only a small thing. Thx Dandello. In germany we drink a beer at this time or two or .......  Grin
Posted by: Dandello
Posted on: Mar 3rd, 2015 at 5:42pm
ThM pointed out an error and I fixed it - too much coffee and no breakfast is always a bad combination.
Posted by: Bill Myers
Posted on: Mar 3rd, 2015 at 5:32pm
Your RSS feed here is working fine for me, including the listing of the sub board test. Cool
Posted by: Dandello
Posted on: Mar 3rd, 2015 at 5:27pm
Some things just can't be properly localized.  Embarrassed
Posted by: Dandello
Posted on: Mar 3rd, 2015 at 5:20pm
AACK!! Smiley
Posted by: ThM
Posted on: Mar 3rd, 2015 at 5:14pm
At this moment here in the board. clicking on rss button at the to right side of the board (Board Index) but i receive no messages
Posted by: Dandello
Posted on: Mar 3rd, 2015 at 4:30pm
Found another bug  Sad
New zip:
Posted by: Dandello
Posted on: Mar 3rd, 2015 at 3:50pm
Okay, finally got it to read subboards for the categories and the whole forum.  Here's a copy of RSS.pm currently running here:
Posted by: Dandello
Posted on: Mar 3rd, 2015 at 6:11am
It doesn't seem to be a problem here, but it is elsewhere - the RSS Feeds for Categories and for the whole forum doesn't show the proper number of items.

Now, there doesn't seem to any particular rhyme or reason to this. Sometimes changing the RSS settings seems to fix it - and sometimes not. Sometimes refreshing the browser cache seems to fix it.

Here is a fix for testing: In RSS.pm find
Code (Perl)
Select All
            $threadcount = @threadlist;
             if ( $threadcount < $topics ) { $topics = $threadcount; }
             @threadlist = @threadlist[ 0 .. $topics - 1 ];
         }
     }

     for my $i ( 0 .. ( @threadlist - 1 ) ) { 



and replace with
Code (Perl)
Select All
        }
     }

     for my $i ( 0 .. $#threadlist ) {
         if ( $i == ($topics - 1 ) ) { last;}
  



The RSS feed for Category and for the whole forums also doesn't show the subboards.  Embarrassed So that's on the bug fix list.