Home » HTTP » HTTP_WebDAV_Server » Bug #6891
Undefined var in HTTP_WebDAV_Server_Filesystem::PROPPATCH()
Details
| Submitted | 2006-02-22 16:42 UTC |
|---|---|
| From | pear dot php dot net at chsc dot dk |
| Assigned | hholzgra |
| Status | Closed |
| Package | HTTP_WebDAV_Server |
| PHP Version | 5.0.5 |
| OS | Linux |
| Roadmaps | (Not assigned) |
Comments
[2006-02-22 16:42 UTC] pear dot php dot net at chsc dot dk
Description:
------------
In HTTP_WebDAV_Server_Filesystem::PROPPATCH() a line reads:
$options["props"][$key][$status] = "403 Forbidden";
$status isn't defined. I assume the following was meant:
$options["props"][$key]['status'] = "403 Forbidden";