From 336797f309200bd535324ab161427b39ab3d7487 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Mon, 16 Feb 2015 16:57:16 +0100 Subject: adapt for php < 5.4 Still not obsolete. :( --- inc/poche/Poche.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'inc/poche/Poche.class.php') diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 481382ec..9424e3ff 100755 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php @@ -395,7 +395,8 @@ class Poche case 'random': Tools::logm('get a random article'); if ($this->store->getRandomId($this->user->getId())) { - $id = $this->store->getRandomId($this->user->getId())[0]; + $id_array = $this->store->getRandomId($this->user->getId()); + $id = $id_array[0]; Tools::redirect('?view=view&id=' . $id[0]); Tools::logm('got the article with id ' . $id[0]); } -- cgit v1.2.3