diff options
author | Charly Root <root@muse-sequencer.org> | 2013-10-07 23:59:55 +0200 |
---|---|---|
committer | Charly Root <root@muse-sequencer.org> | 2013-10-07 23:59:55 +0200 |
commit | d4e28b7d94d7eed6edae05729e14e51b30f87e18 (patch) | |
tree | 9dec855d566ec0328906ac2976437351c343f12f /src/PhpBB3Impl.php | |
parent | 7437f8756d445ed8d5aa298d269dbd4950ac3e3c (diff) |
mark config with CONFIG_TODO
Diffstat (limited to 'src/PhpBB3Impl.php')
-rw-r--r-- | src/PhpBB3Impl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PhpBB3Impl.php b/src/PhpBB3Impl.php index 06b0427..d2c908b 100644 --- a/src/PhpBB3Impl.php +++ b/src/PhpBB3Impl.php @@ -329,9 +329,9 @@ class PhpBB3Impl implements PhpBB3 { # post the attachment data to our attachment writer shim require_once(__DIR__ . '/HTTP_POST_multipart.php'); - $url = 'http://www.vassalengine.org/forum/attachment_writer.php'; + $url = 'http://CONFIG_TODO/attachment_writer.php'; $poster = new HTTP_POST_multipart(); - $poster->addData('password', '5rnudbp7dLkijcwrT@sz'); + $poster->addData('password', 'CONFIG_TODO: use the same random password here as in attachment_writer.php'); $poster->addFile(1, $physicalFilename, $mimetype, null, 'binary', $data); $result = $poster->post($url); |