|
From: Nils A. <nad...@ph...> - 2009-07-22 10:09:51
|
Author: naderman
Date: Wed Jul 22 10:09:25 2009
New Revision: 9825
Log:
removed spaces
Modified:
branches/phpBB-3_0_0/phpBB/includes/questionnaire/questionnaire.php
Modified: branches/phpBB-3_0_0/phpBB/includes/questionnaire/questionnaire.php
==============================================================================
*** branches/phpBB-3_0_0/phpBB/includes/questionnaire/questionnaire.php (original)
--- branches/phpBB-3_0_0/phpBB/includes/questionnaire/questionnaire.php Wed Jul 22 10:09:25 2009
***************
*** 23,30 ****
* to a central server. For privacy reasons we try to collect only data which aren't private
* or don't give any information which might help to identify the user.
*
! * @author Johannes Schlueter <joh...@ph...>
! * @copyright (c) 2007-2008 Johannes Schlueter
*/
class phpbb_questionnaire_data_collector
{
--- 23,30 ----
* to a central server. For privacy reasons we try to collect only data which aren't private
* or don't give any information which might help to identify the user.
*
! * @author Johannes Schlueter <joh...@ph...>
! * @copyright (c) 2007-2008 Johannes Schlueter
*/
class phpbb_questionnaire_data_collector
{
***************
*** 35,41 ****
/**
* Constructor.
*
! * @param string
*/
function phpbb_questionnaire_data_collector($install_id)
{
--- 35,41 ----
/**
* Constructor.
*
! * @param string
*/
function phpbb_questionnaire_data_collector($install_id)
{
***************
*** 51,57 ****
/**
* Get data as an array.
*
! * @return array All Data
*/
function get_data_raw()
{
--- 51,57 ----
/**
* Get data as an array.
*
! * @return array All Data
*/
function get_data_raw()
{
***************
*** 71,77 ****
/**
* Collect info into the data property.
*
! * @return void
*/
function collect()
{
--- 71,77 ----
/**
* Collect info into the data property.
*
! * @return void
*/
function collect()
{
***************
*** 80,86 ****
$provider = &$this->providers[$key];
$this->data[$provider->get_identifier()] = $provider->get_data();
}
! $this->data['install_id'] = $this->install_id;
}
}
--- 80,86 ----
$provider = &$this->providers[$key];
$this->data[$provider->get_identifier()] = $provider->get_data();
}
! $this->data['install_id'] = $this->install_id;
}
}
***************
*** 100,106 ****
/**
* Get data about the PHP runtime setup.
*
! * @return array
*/
function get_data()
{
--- 100,106 ----
/**
* Get data about the PHP runtime setup.
*
! * @return array
*/
function get_data()
{
***************
*** 144,150 ****
/**
* Get data about the general system information, like OS or IP (shortened).
*
! * @return array
*/
function get_data()
{
--- 144,150 ----
/**
* Get data about the general system information, like OS or IP (shortened).
*
! * @return array
*/
function get_data()
{
|