-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove non-prepared variant of database select wrappers #3553
Conversation
This is a very good idea Dave! Happy that it's happening. |
@driusan 35 seconds later... you have a conflict |
The non-prepared variant of the database select wrappers have been deprecated for a long time, but left around because of the need of projects to update any instruments they might have that uses them. This finally removes the code, now that users have had time to update any calls to them and all references in the LORIS codebase have been removed.
14d971c
to
33ae1ab
Compare
* @access public | ||
* @deprecated Use pselect wrappers instead | ||
*/ | ||
function selectRow($query, &$result) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
docs/instruments/NDB_BVL_Instrument_mri_parameter_form.class.inc
will be sad
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolved
* @access public | ||
* @deprecated Use pselect wrappers instead | ||
*/ | ||
function select($query, &$result) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
poor tools/excelDump.php
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
resolved
@xlecours Done and Done please re-review |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
haven't tried it and don't know of project using it. Did a grep on these function name and returned no usage.
The non-prepared variant of the database select wrappers have been
deprecated for a long time, but left around because of the need of
projects to update any instruments they might have that uses them.
This finally removes the code, now that users have had time to
update any calls to them and all references in the LORIS codebase
have been removed.
See also: comments on #3544