Просмотр исходного кода

Fix bad handling of empty MULTI/EXEC contexts (MULTI should not even be sent to the server).

Daniele Alessandri 14 лет назад
Родитель
Сommit
4c8f31f532
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      lib/Predis.php

+ 1 - 1
lib/Predis.php

@@ -890,7 +890,7 @@ class MultiExecBlock {
                 $this->setInsideBlock(false);
             }
 
-            if ($this->_discarded === true) {
+            if ($this->_initialized === false || $this->_discarded === true) {
                 return;
             }