# This patch file was generated by NetBeans IDE
# Following Index: paths are relative to: /home/sidney/NetBeansProjects/trunk_project/EE_trunk/wp-admin/includes
# This patch can be applied using context Tools: Patch action on respective folder.
# It uses platform neutral UTF-8 encoding and \n newlines.
# Above lines and this line are ignored by the patching process.
|
|
|
1568 | 1568 | case 'unique': |
1569 | 1569 | case 'key': |
1570 | 1570 | $validfield = false; |
1571 | | $indices[] = trim(trim($fld), ", \n"); |
| 1571 | $indices[] = str_replace(' ', ' ', trim(trim($fld), ", \n")); |
1572 | 1572 | break; |
1573 | 1573 | } |
1574 | 1574 | $fld = trim($fld); |
… |
… |
|
1648 | 1648 | if ($index_name != 'PRIMARY') { |
1649 | 1649 | $index_string .= $index_name; |
1650 | 1650 | } |
| 1651 | $index_string = rtrim($index_string); |
1651 | 1652 | $index_columns = ''; |
1652 | 1653 | // For each column in the index |
1653 | 1654 | foreach ($index_data['columns'] as $column_data) { |