On Tue, 16 Aug 2011, Hannes Magnusson wrote:

> bjori                                    Tue, 16 Aug 2011 14:52:54 +0000
> 
> Revision: http://svn.php.net/viewvc?view=revision&revision=315030
> 
> Log:
> docref_root is now required for html_errors to do anything

That doesn't sound right. It needs to be set for docrefs to show up 
*only*:

derick@whisky:~$ php -v
PHP 5.4.0beta1-dev (cli) (built: Aug  8 2011 09:26:58) (DEBUG)
Copyright (c) 1997-2011 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2011 Zend Technologies
    with Xdebug v2.2.0-dev, Copyright (c) 2002-2011, by Derick Rethans

derick@whisky:~$ php -n -ddocref_root="" -dhtml_errors=1 -r 'wordwrap("test", 
2, "");'
<br />
<b>Warning</b>:  wordwrap(): Break string cannot be empty in <b>Command line 
code</b> on line <b>1</b><br />

derick@whisky:~$ php -n -ddocref_root="/" -dhtml_errors=1 -r 'wordwrap("test", 
2, "");'
<br />
<b>Warning</b>:  wordwrap() [<a 
href='/function.wordwrap'>function.wordwrap</a>]: Break string cannot be empty 
in <b>Command line code</b> on line <b>1</b><br />

cheers,
Derick

-- 
http://derickrethans.nl | http://xdebug.org
Like Xdebug? Consider a donation: http://xdebug.org/donate.php
twitter: @derickr and @xdebug

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

Reply via email to