We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://github.com/stuttter/ludicrousdb/blob/master/ludicrousdb/includes/class-ludicrousdb.php#L692
public function db_connect( $query = '' ) {
vs WP core since 3.9.0 https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/class-wpdb.php#L1948
public function db_connect( $allow_bail = true ) {
This leads to unexpected behavior and a PHP notice when ludicrousdb is used as drop-in, since plulgins might pass bool explicitly.
The text was updated successfully, but these errors were encountered:
Similar (just rename) for:
$dbh_or_table
public function select( $db, $dbh_or_table = false ) {
public function _real_escape( $to_escape = '' ) {
$die_on_disconnect
public function check_connection( $die_on_disconnect = true
Sorry, something went wrong.
Fix stuttter#188
f2194d2
Successfully merging a pull request may close this issue.
https://github.com/stuttter/ludicrousdb/blob/master/ludicrousdb/includes/class-ludicrousdb.php#L692
vs WP core since 3.9.0
https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-includes/class-wpdb.php#L1948
This leads to unexpected behavior and a PHP notice when ludicrousdb is used as drop-in, since plulgins might pass bool explicitly.
The text was updated successfully, but these errors were encountered: