1 (edited by duffry 2006-06-24 09:19)

Topic: Forum pages all blank after small edit

Hi

I made a small change to include/functions.php and after uploading all pages on the site are completly blank.
I rolled back the change and uploaded but the pages are still all blank.

Can anyone suggest a fix?

I changed line 243 from
$links[] = '<li id="navindex"><a href="index.php">'.$lang_common['Index'].'</a>';
to
$links[] = '<li id="navindex"><a href="index.php">'.$lang_common['Index'].' |</a>';

Re: Forum pages all blank after small edit

Resolved, needed to change this too:

Within:
        function dump()
changed
    for ($i = 0; $i  $num_args; ++$i)
to
    for ($i = 0; $i = $num_args; ++$i)

thanks to those that helped.

3 (edited by Smartys 2006-06-24 11:10)

Re: Forum pages all blank after small edit

The correct line is

for ($i = 0; $i < $num_args; ++$i)

Your line will make dump() not work tongue

Re: Forum pages all blank after small edit

Yeah, but if I put that in the page doesn't work.
hmm

Re: Forum pages all blank after small edit

Then you must have changed something else as well tongue