diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-02-01 12:05:10 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-02-01 12:05:10 +0100 |
commit | d4b6e20e2f04c5e93ab77b732a1108aee1b639d6 (patch) | |
tree | 848f2cce953b88a94bcc834176b9836e39c2fcdc /inc/poche | |
parent | b05f482dd219acd5f5c7e9669ad8bd168ba224c6 (diff) | |
parent | 3831c1525ccc512e27309f2cd531f0beff8dc430 (diff) | |
download | wallabag-d4b6e20e2f04c5e93ab77b732a1108aee1b639d6.tar.gz wallabag-d4b6e20e2f04c5e93ab77b732a1108aee1b639d6.tar.zst wallabag-d4b6e20e2f04c5e93ab77b732a1108aee1b639d6.zip |
merge
Diffstat (limited to 'inc/poche')
-rwxr-xr-x | inc/poche/Poche.class.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index a164ed47..fb74ab9a 100755 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -337,6 +337,7 @@ class Poche | |||
337 | $this->messages->add('s', _('The tag has been successfully deleted')); | 337 | $this->messages->add('s', _('The tag has been successfully deleted')); |
338 | Tools::redirect(); | 338 | Tools::redirect(); |
339 | break; | 339 | break; |
340 | |||
340 | case 'reload_article' : | 341 | case 'reload_article' : |
341 | Tools::logm('reload article'); | 342 | Tools::logm('reload article'); |
342 | $id = $_GET['id']; | 343 | $id = $_GET['id']; |
@@ -346,6 +347,14 @@ class Poche | |||
346 | $this->action('add', $url); | 347 | $this->action('add', $url); |
347 | break; | 348 | break; |
348 | 349 | ||
350 | /* 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 */ | ||
351 | case 'random': | ||
352 | $count = $this->store->getEntriesByViewCount($view, $this->user->getId()); | ||
353 | $id = rand(1,$count); | ||
354 | Tools::logm('get a random article'); | ||
355 | Tools::redirect('?view=view&id=' . $id); | ||
356 | //$this->displayView('view', $id); | ||
357 | break; | ||
349 | default: | 358 | default: |
350 | break; | 359 | break; |
351 | } | 360 | } |