copy(self::$configFile . '.json.php', $sandboxConf . '.json.php');
$this->conf = new ConfigManager($sandboxConf);
- $this->conf->set('general.enabled_plugins', ['markdown']);
- $updater = new Updater([], [], $this->conf, true);
+ $this->conf->set('general.enabled_plugins', array('markdown'));
+ $updater = new Updater(array(), array(), $this->conf, true);
$this->assertTrue($updater->updateMethodEscapeMarkdown());
$this->assertFalse($this->conf->get('security.markdown_escape'));
copy(self::$configFile . '.json.php', $sandboxConf . '.json.php');
$this->conf = new ConfigManager($sandboxConf);
- $this->conf->set('general.enabled_plugins', []);
- $updater = new Updater([], [], $this->conf, true);
+ $this->conf->set('general.enabled_plugins', array());
+ $updater = new Updater(array(), array(), $this->conf, true);
$this->assertTrue($updater->updateMethodEscapeMarkdown());
$this->assertTrue($this->conf->get('security.markdown_escape'));
copy(self::$configFile . '.json.php', $sandboxConf . '.json.php');
$this->conf = new ConfigManager($sandboxConf);
$this->conf->set('security.markdown_escape', true);
- $updater = new Updater([], [], $this->conf, true);
+ $updater = new Updater(array(), array(), $this->conf, true);
$this->assertTrue($updater->updateMethodEscapeMarkdown());
$this->assertTrue($this->conf->get('security.markdown_escape'));
}
public function testEscapeMarkdownSettingNothingToDoDisabled()
{
$this->conf->set('security.markdown_escape', false);
- $updater = new Updater([], [], $this->conf, true);
+ $updater = new Updater(array(), array(), $this->conf, true);
$this->assertTrue($updater->updateMethodEscapeMarkdown());
$this->assertFalse($this->conf->get('security.markdown_escape'));
}