diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-09-01 21:09:04 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-09-01 21:09:04 +0200 |
commit | d66f58a550d61f17c46eca42cba84f45ae9c4628 (patch) | |
tree | ca206db744505a143dc11c7a51939ade561e1577 /Zotlabs/Module | |
parent | 4376f8f030ea36fd5fed263efcee3a5276af0da1 (diff) | |
download | volse-hubzilla-d66f58a550d61f17c46eca42cba84f45ae9c4628.tar.gz volse-hubzilla-d66f58a550d61f17c46eca42cba84f45ae9c4628.tar.bz2 volse-hubzilla-d66f58a550d61f17c46eca42cba84f45ae9c4628.zip |
fix undefined constant warning
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Filestorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Filestorage.php b/Zotlabs/Module/Filestorage.php index cd9ab601d..23bd63f95 100644 --- a/Zotlabs/Module/Filestorage.php +++ b/Zotlabs/Module/Filestorage.php @@ -128,7 +128,7 @@ class Filestorage extends \Zotlabs\Web\Controller { } } - if(json_return) + if($json_return) json_return_and_die([ 'success' => true ]); goaway(dirname($url)); |