mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
- forgot to remove __construct methods when making this PHP4 compatible
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9700 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
b07b30f55d
commit
4940548389
2 changed files with 2 additions and 3 deletions
|
@ -108,7 +108,7 @@ class Questionnaire_Data_Collector
|
||||||
* @param array
|
* @param array
|
||||||
* @param string
|
* @param string
|
||||||
*/
|
*/
|
||||||
function __construct()
|
function Questionnaire_Data_Collector()
|
||||||
{
|
{
|
||||||
$this->providers = array();
|
$this->providers = array();
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,9 +27,8 @@ class questionnaire_phpbb_data_provider
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
* @param array $config
|
* @param array $config
|
||||||
* @param string $oldversion
|
|
||||||
*/
|
*/
|
||||||
function __construct($config)
|
function questionnaire_phpbb_data_provider($config)
|
||||||
{
|
{
|
||||||
// generate a unique id if necessary
|
// generate a unique id if necessary
|
||||||
if (!isset($config['questionnaire_unique_id']))
|
if (!isset($config['questionnaire_unique_id']))
|
||||||
|
|
Loading…
Add table
Reference in a new issue