Home » HTML » HTML_AJAX » Bug #5675
Only variables should be passed by reference
Details
| Submitted | 2005-10-12 20:40 UTC |
|---|---|
| From | php-work at yandex dot ru |
| Assigned | davidc |
| Status | Closed |
| Package | HTML_AJAX |
| PHP Version | 5_1 CVS-2005-10-12 |
| OS | * |
| Roadmaps | (Not assigned) |
Comments
[2005-10-12 20:40 UTC] php-work at yandex dot ru
Description:
------------
/HTML/AJAX.php generate error "Only variables should be passed by reference" on line 280. For correction replace line 280:
$type = array_shift(explode(';',$type));
to:
$type_arr = explode(';',$type);
$type = array_shift($type_arr);