Преглед на файлове

Look for a closing curly brace in a string only after the index of the opening one when using key tags.

Daniele Alessandri преди 14 години
родител
ревизия
4fc5ee65fd
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -440,7 +440,7 @@ abstract class Command {
 
                 $start = strpos($key, '{');
                 if ($start !== false) {
-                    $end = strpos($key, '}');
+                    $end = strpos($key, '}', $start);
                     if ($end !== false) {
                         $key = substr($key, ++$start, $end - $start);
                     }