diff options
author | Nils Adermann <naderman@naderman.de> | 2009-08-13 14:51:47 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2009-08-13 14:51:47 +0000 |
commit | 4525d1cb733e893762e87a4f597f8489a9917191 (patch) | |
tree | 81059ffd44149c2da899a32825cb0e353eb6d276 /phpBB/includes | |
parent | 929fd29ce13ad42235b58f327b694a00780ebe5e (diff) | |
download | forums-4525d1cb733e893762e87a4f597f8489a9917191.tar forums-4525d1cb733e893762e87a4f597f8489a9917191.tar.gz forums-4525d1cb733e893762e87a4f597f8489a9917191.tar.bz2 forums-4525d1cb733e893762e87a4f597f8489a9917191.tar.xz forums-4525d1cb733e893762e87a4f597f8489a9917191.zip |
- links to send statistics after install and update
- link back to ACP main from send statistics
- improved language / better explanation (incl. Bug #48555)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9969 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/acp/acp_send_statistics.php | 3 | ||||
-rw-r--r-- | phpBB/includes/questionnaire/questionnaire.php | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_send_statistics.php b/phpBB/includes/acp/acp_send_statistics.php index 6784d29262..b3baf54983 100644 --- a/phpBB/includes/acp/acp_send_statistics.php +++ b/phpBB/includes/acp/acp_send_statistics.php @@ -27,7 +27,7 @@ class acp_send_statistics function main($id, $mode) { - global $config, $template; + global $config, $template, $phpbb_admin_path, $phpEx; $collect_url = "http://www.phpbb.com/stats/receive_stats.php"; @@ -55,6 +55,7 @@ class acp_send_statistics $template->assign_vars(array( 'U_COLLECT_STATS' => $collect_url, 'RAW_DATA' => $collector->get_data_for_form(), + 'U_ACP_MAIN' => append_sid("{$phpbb_admin_path}index.$phpEx"), )); $raw = $collector->get_data_raw(); diff --git a/phpBB/includes/questionnaire/questionnaire.php b/phpBB/includes/questionnaire/questionnaire.php index 88873efdc5..16bd79742d 100644 --- a/phpBB/includes/questionnaire/questionnaire.php +++ b/phpBB/includes/questionnaire/questionnaire.php @@ -440,7 +440,7 @@ class phpbb_questionnaire_phpbb_data_provider { if (isset($this->config[$name])) { - $result['config.' . $name] = $this->config[$name]; + $result['config_' . $name] = $this->config[$name]; } } |