A new theme for starters tongue And then modify your main.tpl...
[edit:] dear god, how bad was my spelling? =/

1,977

(10 replies, posted in PunBB 1.2 troubleshooting)

Ok, so what do you suggest? A regex check on the input to see if it's a link? And what if I'd like to add a small form in there? Or a <br />? Or and img? Wouldn't be possible anymore.
And I think it'd be quite hard to just check if a tag is closed... =/

1,978

(10 replies, posted in PunBB 1.2 troubleshooting)

Not really a bug, no. It's your own fault, f you can't change anything manually, you shouldn't be messing things up =/

1,979

(5 replies, posted in PunBB 1.2 troubleshooting)

mysql> CREATE DATABASE punbb
        > I don't know what to type here

Try

mysql> CREATE DATABASE punbb;

1,980

(4 replies, posted in PunBB 1.2 bug reports)

French version should be the same with a different language pack... =/ So if there are language errors, fix them in a file in the lang/ folder.

1,981

(5 replies, posted in General discussion)

lol

1,982

(3 replies, posted in Programming)

Yeah, you read it right... how do you make the content of a textarea look like it's between <pre> tags? =/ I tried adding

style="white-space: pre;"

, but it didn't work sad
Any help would be appreciated ^^

Paul wrote:

Who is this "we". When it comes to messing with queries you're on your own mate.

lol tongue

Oh, and I advise someone to put that into a code block...

if ($img_size = @getimagesize($pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.gif'))
                $user_avatar = '<img src="'.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.gif" '.$img_size[3].' alt="" />';
            else if ($img_size = @getimagesize($pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.jpg'))
                $user_avatar = '<img src="'.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.jpg" '.$img_size[3].' alt="" />';
            else if ($img_size = @getimagesize($pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.png'))
                $user_avatar = '<img src="'.$pun_config['o_avatars_dir'].'/'.$cur_post['poster_id'].'.png" '.$img_size[3].' alt="" />';

Change variables ofcourse.

I'm using FF1.5.0.4, and have no issues wink

Looks nice, although I find the submitting quite slow.

1,987

(7 replies, posted in PunBB 1.2 modifications, plugins and integrations)

Before

require PUN_ROOT.'footer.php';

add this:

$footer_style = 'index';

smile

Firefox can handle transparent PNGs, IE can't (IE7 most likely will). Only if they are saved with alpha transaprency they work in both wink
Just look at the logo here in IE, it's a PNG

Hrmm... save your PNG with alpha transparency? Should work, and most gfx programs support it wink

Making a new box is easy:

<div class="box">
<h2><!--Title--></h2>
<div class="inbox">
<!--Content goes here-->
</div>
</div>

smile

Well, parsing before inserting the message into the DB would be bad, as you would lose your edit function tongue If you'd allow people to edit the HTML, you can see plently of security risks tongue

1,992

(3 replies, posted in Feature requests)

Ah. Yeah, a user rating would be nice. Go suggest that on PunRes tongue

1,993

(3 replies, posted in Feature requests)

Well, latest version should always be the best one, as it contains all sorts of bugfixes wink

1,994

(12 replies, posted in Programming)

That's pretty easy wink I made a small RSS parser a couple of days ago, if you want, you can mail me and I'll send it to you tongue

1,995

(20 replies, posted in PunBB 1.2 troubleshooting)

colak wrote:

Hi paul, Any idea where I can find a list of those numbers attached to the characters?

http://www.lookuptables.com/

1,996

(3 replies, posted in PunBB 1.2 discussion)

I made a mod for it too ... search for Board Logo on PunRes smile

function result($query_id = 0, $row = 0)
    {
        return ($query_id) ? @mysql_result($query_id, $row) : false;
    }

It takes two.

Nah, that's unneeded wink And some browsers don't support it wink

1,999

(5 replies, posted in PunBB 1.2 troubleshooting)

Well, it's JavaScript, not Java.
Then, there already is a mod for this tongue

Show me the query please.