]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/poche/Poche.class.php
merge
[github/wallabag/wallabag.git] / inc / poche / Poche.class.php
index a164ed4753cefc5f1ac169e75e46214a0e52607c..fb74ab9a0aaa23ec1e0ba0eb7b89e4de8cda384a 100755 (executable)
@@ -337,6 +337,7 @@ class Poche
                 $this->messages->add('s', _('The tag has been successfully deleted'));
                 Tools::redirect();
                 break;
+
             case 'reload_article' :
                 Tools::logm('reload article');
                 $id = $_GET['id'];
@@ -346,6 +347,14 @@ class Poche
                 $this->action('add', $url);
                 break;
                 
+            /* For some unknown reason I can't get displayView() to work here (it redirects to home view afterwards). So here's a dirty fix which redirects directly to URL */
+            case 'random':
+                $count = $this->store->getEntriesByViewCount($view, $this->user->getId());
+                $id = rand(1,$count);
+                Tools::logm('get a random article');
+                Tools::redirect('?view=view&id=' . $id);
+                //$this->displayView('view', $id);
+                break;
             default:
                 break;
         }