summaryrefslogtreecommitdiff
path: root/src/attachment_writer.php
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-05-10 18:51:55 +0000
committeruckelman <uckelman@nomic.net>2010-05-10 18:51:55 +0000
commit3205ceac8416fbba0e726bde0688c994a962272e (patch)
treecd6f72c054872109dfc3965e3c61d0c042becf4e /src/attachment_writer.php
parent4293a2f7e71ecffc84b8520eb4cb150cc43484a5 (diff)
Added shim for writing attachments.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6844 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'src/attachment_writer.php')
-rw-r--r--src/attachment_writer.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/attachment_writer.php b/src/attachment_writer.php
new file mode 100644
index 0000000..ee638c7
--- /dev/null
+++ b/src/attachment_writer.php
@@ -0,0 +1,12 @@
+<?php
+
+if (!array_key_exists('password', $_POST)) {
+ die('No password given');
+}
+
+var_dump($_FILES);
+
+
+}
+
+?>