From ea9c8d24359afd1323d9266f29c6674ceffd59ba Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Wed, 6 Aug 2008 12:56:33 +0000 Subject: Update: Worked on phpBB3 plugin The Subscription File didn't contain the activation key, so that was fixed, and also it turned out that everywhere was using the wrong method of getting the board's URL, so that was changed too. Then then sending library was worked upon. The only fault I currently see is that the Author field doesn't seem to be being sent for some reason. Refs #7 --- update/plugin/phpBB3/trunk/root/includes/acp/acp_instadisc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'update/plugin/phpBB3/trunk/root/includes/acp') diff --git a/update/plugin/phpBB3/trunk/root/includes/acp/acp_instadisc.php b/update/plugin/phpBB3/trunk/root/includes/acp/acp_instadisc.php index a5388f1..dc28771 100644 --- a/update/plugin/phpBB3/trunk/root/includes/acp/acp_instadisc.php +++ b/update/plugin/phpBB3/trunk/root/includes/acp/acp_instadisc.php @@ -43,7 +43,7 @@ class acp_instadisc $idun = isset($config['id_username']) ? $config['id_username'] : ''; $idps = isset($config['id_password']) ? $config['id_password'] : ''; $idak = isset($config['id_activation_key']) ? $config['id_activation_key'] : ''; - $idsf = $config['server_protocol'] . $config['server_name'] . $config['script_path'] . '/instadisc.php'; + $idsf = generate_board_url() . '/instadisc.php'; $template->assign_vars(array( 'S_SUBSCRIPTION_TITLE' => $idst, -- cgit 1.4.1