dbDelta needs all the comments it can get. Restore the one removed in [15210].

git-svn-id: http://svn.automattic.com/wordpress/trunk@15211 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-06-11 03:03:17 +00:00
parent 3c79510246
commit 8fcdf9a979
1 changed files with 1 additions and 0 deletions

View File

@ -1401,6 +1401,7 @@ function dbDelta($queries, $execute = true) {
foreach ($tables as $table) {
// If a table query exists for the database table...
if ( array_key_exists(strtolower($table), $cqueries) ) {
// Clear the field and index arrays
$cfields = $indices = array();
// Get all of the field names in the query from between the parens
preg_match("|\((.*)\)|ms", $cqueries[strtolower($table)], $match2);