Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion HTTP/WebDAV/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class HTTP_WebDAV_Server
*
* @param void
*/
function HTTP_WebDAV_Server()
public function __construct()
{
// PHP messages destroy XML output -> switch them off
ini_set("display_errors", 0);
Expand Down
2 changes: 1 addition & 1 deletion Tools/_parse_lockinfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class _parse_lockinfo
* @param string path of stream to read
* @access public
*/
function _parse_lockinfo($path)
public function __construct($path)
{
// we assume success unless problems occur
$this->success = true;
Expand Down
2 changes: 1 addition & 1 deletion Tools/_parse_propfind.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class _parse_propfind
*
* @access public
*/
function _parse_propfind($path)
public function __construct($path)
{
// success state flag
$this->success = true;
Expand Down
2 changes: 1 addition & 1 deletion Tools/_parse_proppatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class _parse_proppatch
* @param string path of input stream
* @access public
*/
function _parse_proppatch($path)
public function __construct($path)
{
$this->success = true;

Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Bug #18694 Filesystem.php GetDir wrongly encoded filesnames containing single qu
<dependencies>
<required>
<php>
<min>4.4</min>
<min>5.0</min>
</php>
<pearinstaller>
<min>1.4.0b1</min>
Expand Down