aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Database.class.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2015-02-16 00:43:18 +0100
committerThomas Citharel <tcit@tcit.fr>2015-02-16 00:43:18 +0100
commit6b60741600321e4a2c414e91595b09d35516a3ea (patch)
tree4c7dc3c93d4a3d1dfa861ce565602f41b7714b8d /inc/poche/Database.class.php
parentd523c9939968d894d56b617be5210bd936e10c39 (diff)
downloadwallabag-6b60741600321e4a2c414e91595b09d35516a3ea.tar.gz
wallabag-6b60741600321e4a2c414e91595b09d35516a3ea.tar.zst
wallabag-6b60741600321e4a2c414e91595b09d35516a3ea.zip
alternative random function to fix #10821.9beta2
Diffstat (limited to 'inc/poche/Database.class.php')
-rwxr-xr-xinc/poche/Database.class.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/inc/poche/Database.class.php b/inc/poche/Database.class.php
index a987b7cc..210ebb74 100755
--- a/inc/poche/Database.class.php
+++ b/inc/poche/Database.class.php
@@ -411,6 +411,14 @@ class Database {
411 411
412 return $count; 412 return $count;
413 } 413 }
414 public function getRandomId($row, $user_id) {
415 $sql = "SELECT id FROM entries WHERE user_id=? LIMIT 1 OFFSET ? ";
416 $params = array($user_id, $row);
417 $query = $this->executeQuery($sql, $params);
418
419 return $query->fetchAll();
420 }
421
414 422
415 public function updateContent($id, $content, $user_id) 423 public function updateContent($id, $content, $user_id)
416 { 424 {