1

(13 replies, posted in PunBB 1.2 bug reports)

it's not related to mods - it has to do something with styles.
yes... on 95,84% it's caused by styles with fixed width. + attribut size in input elements

currently, the fastest fix which i found, is add this to style/imports/base_admin.css:

#adminconsole td input {width: 100%;}

it solves the overflow, but it has a lot of side effects.

i've tested this just with Zoey B&W style, but it should works with others... so try it.
btw, coxis, what style do you use?

iam afraid that a complete solution will need some deeper modifications. let's find out what...

2

(13 replies, posted in PunBB 1.2 bug reports)

Paul wrote:

It looks more like the kind of thing produced by some kind of stylesheet parsing tool.

i think so. it's not in specification. but then it has probably no effect.

input fields have defined attribute size. value 50 seems just too much for some styles with fixed width.
so, some modifications in CSS are enough. just set the width of input elements on 100%.

i will find some way, how to integrate this.

btw, using of uppercase for element specifications (and even for attributes) in CSS is deprecated. XML (and even XHTML, of course) is case-sensitive; yes, it works with uppercase, but if you want a better validity...

3

(13 replies, posted in PunBB 1.2 bug reports)

i think, it's an error in the administration CSS (maybe 'style/imports/base_admin.css'?), and it also depends on the forum style (in my case, Zoey B&W) - styles with fixed width (?)
here it's in Firefox 1.0.7
http://img14.imageshack.us/img14/335/admincssbug18rg.th.png
but it doesn't depend on browser - it's same in Opera
http://img16.imageshack.us/img16/4075/admincssbug25kd.th.png

i will take a closer look on it, but what about this part of style..?

#adminconsole fieldset td    /* line 12 in style/imports/base_admin.css */
{
/*...*/
    padding-left-ltr-source: physical;
    padding-left-rtl-source: physical;
    padding-right-ltr-source: physical;
    padding-right-rtl-source: physical;
/*...*/
}

sorry for my english...

4

(1,382 replies, posted in General discussion)

session id

not so same bug.

the output HTML is clean, BUT it creates block element in the inline element, which is bad...

but how to check this sort of code? maybe the SAX integration?

6

(1,382 replies, posted in General discussion)

pop music

this is the error of the czech translation.

edit file lang/Czech/common.php in folder where you have punBB.

see line number 32.
there should be this:

'lang_encoding'            =>    'cp-1250',

thats it. cp-1250 is a not valid encoding for web pages.
so change it:

'lang_encoding'            =>    'windows-1250',

now should be everything OK.