php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #58295 svn_blame() return same -1s in rev
Submitted: 2008-07-29 07:29 UTC Modified: 2008-09-02 06:49 UTC
From: vrana@php.net Assigned: scottmac (profile)
Status: Closed Package: svn (PECL)
PHP Version: 5.2.5 OS: Windows
Private report: No CVE-ID: None
 [2008-07-29 07:29 UTC] vrana@php.net
Description:
------------
svn_blame() returns -1 in rev for each line

Reproduce code:
---------------
print_r(svn_blame("http://phpminadmin.svn.sourceforge.net/svnroot/phpminadmin/trunk/index.php"));

Expected result:
----------------
Array
(
    [0] => Array
        (
            [rev] => -1
            [line_no] => 1
            [line] => <?php
        )

...

Actual result:
--------------
Array
(
    [0] => Array
        (
            [rev] => 1
            [line_no] => 1
            [line] => <?php
        )

...

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2008-09-02 06:49 UTC] scottmac@php.net
This bug has been fixed in CVS.

In case this was a documentation problem, the fix will show up at the
end of next Sunday (CET) on pecl.php.net.

In case this was a pecl.php.net website problem, the change will show
up on the website in short time.
 
Thank you for the report, and for helping us make PECL better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Mar 29 11:01:29 2024 UTC