diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-06 15:51:48 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-08-06 15:51:48 +0200 |
commit | 8d3275bee488d058c6ff0efe6e81d20a584d3709 (patch) | |
tree | 80b82707b6aecc5e29fa72cbdcf8ffe76ba8b7b4 /inc/store/mysql.class.php | |
parent | 7ce7ec4c942e0a3567858ad0ec8e654000b49a3f (diff) | |
download | wallabag-8d3275bee488d058c6ff0efe6e81d20a584d3709.tar.gz wallabag-8d3275bee488d058c6ff0efe6e81d20a584d3709.tar.zst wallabag-8d3275bee488d058c6ff0efe6e81d20a584d3709.zip |
multi user
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 | } |