diff options
author | uckelman <uckelman@nomic.net> | 2010-05-11 21:37:36 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-05-11 21:37:36 +0000 |
commit | 0004c536c10ebe915787dde62477bf74737b429e (patch) | |
tree | 236e2c64a339bc6b04e1d1289af0eb907f4f0172 /src/attachment_writer.php | |
parent | 80ae6c14fb7967fc01f6dfe2e598050dacd1d2ba (diff) |
Print 1 on success, don't return it. (Nothing reads the return value.)
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6852 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/attachment_writer.php')
-rw-r--r-- | src/attachment_writer.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/attachment_writer.php b/src/attachment_writer.php index fb7d144..970261a 100644 --- a/src/attachment_writer.php +++ b/src/attachment_writer.php @@ -61,6 +61,7 @@ foreach ($_FILES as $file) { } } -return 1; +# Success! +print 1; ?> |