Skip to content

Instantly share code, notes, and snippets.

@Schnitzel
Created October 15, 2014 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Schnitzel/36cdf218dac7859dbc74 to your computer and use it in GitHub Desktop.
Save Schnitzel/36cdf218dac7859dbc74 to your computer and use it in GitHub Desktop.
SA-CORE-2014-005 Patch only
diff --git a/includes/database/database.inc b/includes/database/database.inc
index f78098b..01b6385 100644
--- a/includes/database/database.inc
+++ b/includes/database/database.inc
@@ -736,7 +736,7 @@ abstract class DatabaseConnection extends PDO {
// to expand it out into a comma-delimited set of placeholders.
foreach (array_filter($args, 'is_array') as $key => $data) {
$new_keys = array();
- foreach ($data as $i => $value) {
+ foreach (array_values($data) as $i => $value) {
// This assumes that there are no other placeholders that use the same
// name. For example, if the array placeholder is defined as :example
// and there is already an :example_2 placeholder, this will generate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment