Any dev input/feedback maybe? Or should I file this as bug?

A problem when changing the color of the offline userstatus indicator occurs because the selector .brd .post * (lines 90-92) is used for that. However, this one also changes some other border colors.
To circumvent that a new selector should be added to allow offline indicators to have a separate color:

.brd .userstatus span {
    border-color: #DDE4EB;
    }

3

(4 replies, posted in PunBB 1.3 bug reports)

That is seriously weird xD

Well if it also works in ie6 that way so be it smile

4

(4 replies, posted in PunBB 1.3 bug reports)

Possibly because I had a colon error in there (just checked on my own forum again where I use this cs trick):

.brd .main-content [class="icon sticky closed"] {
    background: border-color: #D7E5F3 #C3CFDC #898989 #7A7A7A !important;
    }

There was a colon after the #7A7A7A color code in the original css quote.

I just verified using  Firefox, Safari, Opera and Chrome (all except Chrome on OS X and Windows): it works smile

5

(4 replies, posted in PunBB 1.3 bug reports)

The status indicator pattern matching is erratic.

Line 381 to 383

.brd .main-content .sticky .closed .icon {
    border-color: #D7E5F3 #C3CFDC #898989 #7A7A7A;
    }

This piece of css does effectively nothing because it doesn't match "<span class="icon sticky closed"><!-- --></span>".

A workaround (post IE6/Firefox/Opera/Safari) would be the following:

.brd .main-content [class="icon sticky closed"] {
    background: border-color: #D7E5F3 #C3CFDC #898989 #7A7A7A; !important;
    }

Next one, a problem when changing the color of the offline userstatus indicator occurs because the selector .brd .post * (lines 90-92) is used for that. However, this one also changes some other border colors.
To circumvent that a new selector should be added to allow offline indicators to have a separate color:

.brd .userstatus span {
    border-color: #DDE4EB;
    }

Ah thanks, must have missed that when searching.

When using pun_tags and adding tags to topic within a forum that is disabled for a certain user group (or even the majority of user groups) the tags get listed on the front page none the less.

Browsing the topic itself is not possible unless one is within the necessary user group. However, information (topic name, author, posts etc.) gets listed as usual despite one being disallowed from seeing it.

Tags should only be fetched for topics that may be accessed by the user. Not in general from all topics available in the whole forum.

8

(98 replies, posted in PunBB 1.3 extensions)

Nice to hear smile

9

(98 replies, posted in PunBB 1.3 extensions)

After having read this topic I am not exactly sure whether this extension works with 1.3.3. at all and (more or less) faultlessly on top. As I will need this extension for a forum in near future (<3 Weeks), I'd like to know whether there is any use in waiting or whether I should just go and see about a different forum software.