rabin 3 years ago
parent
commit
3914730876
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Database.php

+ 1 - 1
src/Database.php

@@ -164,7 +164,7 @@ class Database
      */
     private function getUrlParam($key, $table, $suffix, $state, $project = '')
     {
-        $index = $key . '_' . $project . '_' . $table;
+        $index = md5($key . '_' . $project . '_' . $table . '_' . $suffix);
         if (isset($this->param[$index])) {
             return $this->param[$index];
         }