From d4e28b7d94d7eed6edae05729e14e51b30f87e18 Mon Sep 17 00:00:00 2001 From: Charly Root Date: Mon, 7 Oct 2013 23:59:55 +0200 Subject: mark config with CONFIG_TODO --- src/PhpBB3Impl.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/PhpBB3Impl.php') 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); -- cgit v1.2.3