Home » Web Services » SOAP » Bug #5458
already define notice
Details
| Submitted | 2005-09-19 18:09 UTC |
|---|---|
| From | maurice at phmarket dot com |
| Assigned | yunosh |
| Status | No Feedback |
| Package | SOAP |
| PHP Version | 5.0.4 |
| OS | linux |
| Roadmaps | (Not assigned) |
Comments
[2005-09-19 18:09 UTC] maurice at phmarket dot com
Description:
------------
Constant FLOAT already defined in Base.php
Test script:
---------------
define('FLOAT', 'float');
need to be :
if (!defined('FLOAT'))
define('FLOAT', 'float');
}
Expected result:
----------------