Jacek Kowalski
2012-09-17 362fd2f0e5d4709e8bd0b2286414fc09016ca4b9
class/BotSession.php
@@ -55,6 +55,12 @@
            $version = 1;
         }
         
         if($version < 3) {
            $this->PDO->query('DELETE FROM data WHERE class IS NULL AND name=\'user_struct\'');
            $this->PDO->query('INSERT OR REPLACE INTO data (class, name, value) VALUES (\'\', \'_version\', 3)');
            $version = 3;
         }
         return;
      }
      
@@ -83,7 +89,7 @@
         $this->PDO->beginTransaction();
         $st = $this->PDO->prepare('INSERT OR REPLACE INTO data (class, name, value) VALUES (?, ?, ?)');
         
         $st->execute(array('', '_version', 1));
         $st->execute(array('', '_version', 2));
         
         foreach($files as $file) {
            $data = unserialize(file_get_contents($file));