diff options
Diffstat (limited to 'inc/poche/Routing.class.php')
-rw-r--r-- | inc/poche/Routing.class.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/poche/Routing.class.php b/inc/poche/Routing.class.php index 83eabf19..ec33432c 100644 --- a/inc/poche/Routing.class.php +++ b/inc/poche/Routing.class.php | |||
@@ -118,6 +118,10 @@ class Routing | |||
118 | $mobi = new WallabagMobi($this->wallabag, $_GET['method'], $_GET['value']); | 118 | $mobi = new WallabagMobi($this->wallabag, $_GET['method'], $_GET['value']); |
119 | $mobi->prepareData(); | 119 | $mobi->prepareData(); |
120 | $mobi->produceMobi(); | 120 | $mobi->produceMobi(); |
121 | } elseif (isset($_GET['send2kindle'])) { | ||
122 | $mobi = new WallabagMobi($this->wallabag, $_GET['method'], $_GET['value']); | ||
123 | $mobi->prepareData(); | ||
124 | $mobi->produceMobi(TRUE); | ||
121 | } elseif (isset($_GET['pdf'])) { | 125 | } elseif (isset($_GET['pdf'])) { |
122 | $pdf = new WallabagPDF($this->wallabag, $_GET['method'], $_GET['value']); | 126 | $pdf = new WallabagPDF($this->wallabag, $_GET['method'], $_GET['value']); |
123 | $pdf->prepareData(); | 127 | $pdf->prepareData(); |