]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
merge
authorThomas Citharel <tcit@tcit.fr>
Sun, 1 Feb 2015 11:05:10 +0000 (12:05 +0100)
committerThomas Citharel <tcit@tcit.fr>
Sun, 1 Feb 2015 11:05:10 +0000 (12:05 +0100)
1  2 
inc/poche/Poche.class.php

index a164ed4753cefc5f1ac169e75e46214a0e52607c,5b8e235f11fd5b9d679ded9486d65154c0f3b5bc..fb74ab9a0aaa23ec1e0ba0eb7b89e4de8cda384a
@@@ -337,15 -337,14 +337,24 @@@ class Poch
                  $this->messages->add('s', _('The tag has been successfully deleted'));
                  Tools::redirect();
                  break;
++
 +            case 'reload_article' :
 +                Tools::logm('reload article');
 +                $id = $_GET['id'];
 +                $entry = $this->store->retrieveOneById($id, $this->user->getId());
 +                Tools::logm('reload url ' . $entry['url']);
 +                $url = new Url(base64_encode($entry['url']));
 +                $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;
          }