Bug #17
Fixed Call Time Pass By Reference Issue Being Experienced by a number of users. Thanks to Gaila for the needed changes!
| Status: | Closed | Start: | 04/24/2009 | |
| Priority: | Normal | Due date: | 04/24/2009 | |
| Assigned to: | Omar Ramos | % Done: | 100% |
|
| Category: | - | Spent time: | 1.00 hour | |
| Target version: | 2.0.3 | Estimated time: | 1.00 hour | |
Description
Fixed Call Time Pass By Reference Issue Being Experienced by a number of users. Thanks to Gaila for the needed changes!
The problem in this situation was due to me calling a method and passing a variable in by reference at call-time (e.g. myMethod(&varRef)) which should not be done in PHP 5. I already had the method itself asking for a reference in the method definition so I realized that this was really redundant anyway and so I'm glad somebody noticed it and let me know.