diff options
Diffstat (limited to 'inc/store/mysql.class.php')
-rw-r--r-- | inc/store/mysql.class.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/inc/store/mysql.class.php b/inc/store/mysql.class.php index 78254a5f..8b7f83da 100644 --- a/inc/store/mysql.class.php +++ b/inc/store/mysql.class.php | |||
@@ -192,11 +192,4 @@ class Mysql extends Store { | |||
192 | parent::__construct(); | 192 | parent::__construct(); |
193 | return $this->getHandle()->lastInsertId(); | 193 | return $this->getHandle()->lastInsertId(); |
194 | } | 194 | } |
195 | |||
196 | public function updateContentById($id) { | ||
197 | parent::__construct(); | ||
198 | $sql_update = "UPDATE entries SET content=? WHERE id=?"; | ||
199 | $params_update = array($content, $id); | ||
200 | $query = $this->executeQuery($sql_update, $params_update); | ||
201 | } | ||
202 | } | 195 | } |