mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Fix wpdb::tables() prefix handling. Ensures PHP4 compat. See #12083
git-svn-id: http://svn.automattic.com/wordpress/trunk@13245 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f58329a718
commit
f3bf4ec676
@ -601,8 +601,8 @@ class wpdb {
|
||||
|
||||
if ( $prefix ) {
|
||||
$prefix = $this->get_blog_prefix( $blog_id );
|
||||
foreach ( $tables as &$table ) {
|
||||
$table = $prefix . $table;
|
||||
foreach ( $tables as $k => $table ) {
|
||||
$tables[$k] = $prefix . $table;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user