This is what I got on my browser:

Parse error: parse error, expecting `')'' in
/local/Web/sites/phpweb/include/layout.inc on line 29
Fatal error: Call to undefined function: make_image() in
/local/Web/sites/phpweb/index.php on line 117


And this is the problem:

$highlighted = '<div class="phpcode">' . str_replace(
        array(
            '&nbsp;'
            '<br />',
            '<font color="',
            '</font>',
            "\n ",
            '  '
        ),
        array(
            ' ',
            "<br />\n",
            '<span class="',
            '</span>',
            "\n&nbsp;",
            '&nbsp; '
        ),
        $highlighted
    ) . '</div>';

You missed a comma on the third line in this code (line 29 in layout.inc).

Paul

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to