251

Re: PunBB 1.2 development source

You must registrate you to have more benefits

lol

252 (edited by Azakur4 2004-11-13 19:31)

Re: PunBB 1.2 development source

lol is only one phrase men :S

El Mejor Lugar de la Red - Corporación Azakur4

253

Re: PunBB 1.2 development source

yeh i know but registrate isn't a word and it doesn't make sense

254

Re: PunBB 1.2 development source

Connorhd wrote:

but registrate isn't a word

isn't it?

255

Re: PunBB 1.2 development source

well maybe its a word but its not widely used and it still doesn't make sense tongue

256

Re: PunBB 1.2 development source

replace "you" with "yourself" and "benefits" with "features", and you should find some sense in it ...

not all ppl have english as native language, try constructive critisism, that usually helps a community, rather than get people mad at each other wink

257

Re: PunBB 1.2 development source

You must register to use all features of this forum

258

Re: PunBB 1.2 development source

yeah thanks connorhd for the phrase tongue

El Mejor Lugar de la Red - Corporación Azakur4

259

Re: PunBB 1.2 development source

anyway login on every is not needed since you only need to login once

260

Re: PunBB 1.2 development source

Azakur4: Thanks. The first thing (Moderated by), I had missed. Consider it fixed in the next release. I'm not really fond of the login box on the front page though, so don't count on that one making it into the code.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

261

Re: PunBB 1.2 development source

oki, i only try help for a best punbb wink

El Mejor Lugar de la Red - Corporación Azakur4

262 (edited by Lizon_IC 2004-11-15 06:46)

Re: PunBB 1.2 development source

Found one small bug on my admin_index.php

"Notice: Undefined offset: 1 in /homepages/41/d93159822/htdocs/punbb/admin_index.php on line 83

Notice: Undefined offset: 2 in /homepages/41/d93159822/htdocs/punbb/admin_index.php on line 83"

That is on the top of my page, but the page still works. Strange.....

The code on line 83 is as follows:

$server_load = $load_averages[0].' '.$load_averages[1].' '.$load_averages[2];

263

Re: PunBB 1.2 development source

I'll have a look at it.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

264

Re: PunBB 1.2 development source

Connorhd wrote:

You must registrate you to have more benefits

lol

I love it when a fool is wrong:
registrate

...apart from which it's more important what a person is saying than what it is they said

265

Re: PunBB 1.2 development source

well registrate or not... its also grammatically incorrect

266

Re: PunBB 1.2 development source

or is it..?

You must - registrate you - to have more benefits.

Registrate modifies you, into yourself?

You must register yourself to have more benefits.

267

Re: PunBB 1.2 development source

lol guys, i speak spanish i forget change the phrase. in addition that single phrase this to decorate and is left the forum pretty, you can put ke but they like.

i don't speak english very well.

El Mejor Lugar de la Red - Corporación Azakur4

268

Re: PunBB 1.2 development source

yeh i wasn't meaning to spark a big argument that phrase may be in theory "correct" but its not the phrase you would use

269

Re: PunBB 1.2 development source

In Soviet Russia register regstrates you!

270

Re: PunBB 1.2 development source

hey rickard when you launch the next release ?:$ I am impatient to prove it

El Mejor Lugar de la Red - Corporación Azakur4

271

Re: PunBB 1.2 development source

sverrir wrote:

In Soviet Russia register regstrates you!

lol :)))))))))))))))))))))))))))))))))))))))))
ROFL..... i've almost died :)))))))))) help me somebody %)))))))))))
I hadn't seen such foolish statement already for a looooong time :))
BTW where have you seen SOVIET Russia ? :))))

272 (edited by deusiah 2004-12-16 11:42)

Re: PunBB 1.2 development source

Is there anywhere I can see a demo or better still a working forum running on 1.2 or isn't it stable enough yet?

Also I have decided to intregrate puBB with my CMS, will there be any major changes in 1.2 that would effect code that makes use of the login functions? I have been holding out for 1.2 but I guess if theres not going to be any or too many changes I may aswell go ahead with my plans.

273

Re: PunBB 1.2 development source

its got the chatroom mod iu'm working on installed on it but apart from that heres a working test site http://66.98.138.31/~connorhd/pun1.2beta/index.php

274

Re: PunBB 1.2 development source

thanks for the demo. Looks nice, i cant wait until 'till it'll be finished :)

275

Re: PunBB 1.2 development source

If been experimenting with 1.2 to adopt it on my website once it goes final. I was making some modifications and I think I found a bug in in PunBB 1.2 beta. It's a bit strange and I really can't figure out what goes wrong. Here's who to replicate it.

Place a file called 'test.php' in the PunBB dir and add the following code:

<?php
class Class1
{
    function foobar()
    {
        return 1;
    }    
}

class Class2
{
    function foobar()
    {
        global $class1;
        return $class1->foobar();
    }
}
$class1 = new Class1();
$class2 = new Class2();
echo $class2->foobar();
?>

Now add "<pun_include "test.php">" to 'main.tpl' This should print a 1 at the place where you add it in the template. Most of the times is works, but if you call 'moderate.php' without any arguments, or with the get_host argument you get 'Fatal error: Call to a member function on a non-object in test.php on line 15'

Okay, you might wonder why I want to print a 1 that complicated, but in fact it is a simplification of a module/template system that I don't want to change. This is just the simplest example I could come up with to show the bug.

(I apologise if I should have sent this by mail...)