aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/poche/Poche.class.php')
-rwxr-xr-xinc/poche/Poche.class.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index 81a18c86..a164ed47 100755
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -337,6 +337,15 @@ 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 case 'reload_article' :
341 Tools::logm('reload article');
342 $id = $_GET['id'];
343 $entry = $this->store->retrieveOneById($id, $this->user->getId());
344 Tools::logm('reload url ' . $entry['url']);
345 $url = new Url(base64_encode($entry['url']));
346 $this->action('add', $url);
347 break;
348
340 default: 349 default:
341 break; 350 break;
342 } 351 }