User tests: Successful: Unsuccessful:
Use the getXXX methods over get with filter for input checking. cc @bembelimen
It still works
It works but by using the general get method over the getXXX methods.
None
Status | New | ⇒ | Pending |
Category | ⇒ | Administration com_associations |
Labels |
Added:
?
|
Status | Pending | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-04-21 12:59:35 |
Closed_By | ⇒ | zero-24 |
It's not a major performance issue. Literally the difference is getString()
results in two method calls, the first of which is the magic __call()
method which has to parse the arguments to get the data to call the get()
method while just calling get()
results in one.
Closing as this result in a performace issue (getXXX over get as the first is not a actual method) as described by @mbabker