only take action, when there is something to do
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 11 Oct 2019 09:42:07 +0000 (11:42 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 11 Oct 2019 09:42:07 +0000 (11:42 +0200)
src/Module/Settings/Uexport.php

index c9cab9b..8e0ee67 100644 (file)
@@ -32,8 +32,8 @@ class Uexport extends BaseSettingsModule
        {
                parent::content();
                $args = self::getClass(Arguments::class);
-               $action = $args->get(2);
-               if ($args->getArgc() > 2) {
+               if ($args->getArgc() == 3) {
+                       $action = $args->get(2);
                        header("Content-type: application/json");
                        header('Content-Disposition: attachment; filename="' . $a->user['nickname'] . '.' . $action . '"');
                        switch ($action) {