@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | |
54 | 54 | // Get the language from the bot |
55 | 55 | $sth = $this->pdo->prepare('SELECT language FROM ' . $this->user_table . ' WHERE ' |
56 | - . $this->id_column . ' = :chat_id'); |
|
56 | + . $this->id_column . ' = :chat_id'); |
|
57 | 57 | $sth->bindParam(':chat_id', $this->_chat_id); |
58 | 58 | |
59 | 59 | try { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | |
120 | 120 | // Update the language in the database |
121 | 121 | $sth = $this->pdo->prepare('UPDATE ' . $this->user_table . ' SET language = :language WHERE ' |
122 | - . $this->id_column . ' = :id'); |
|
122 | + . $this->id_column . ' = :id'); |
|
123 | 123 | $sth->bindParam(':language', $language); |
124 | 124 | $sth->bindParam(':id', $this->_chat_id); |
125 | 125 |