From: Roland Häder Date: Sat, 1 Aug 2009 21:16:08 +0000 (+0000) Subject: Double->single converted X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eeb7c4319bcb98fe2a055ebfe7bf8ab90e790e84;p=install.git Double->single converted --- diff --git a/application/install/config.php b/application/install/config.php index 9511e45..821ea48 100644 --- a/application/install/config.php +++ b/application/install/config.php @@ -26,25 +26,25 @@ $cfg = FrameworkConfiguration::getInstance(); // CFG: HEADER-CHARSET -$cfg->setConfigEntry('header_charset', "utf-8"); +$cfg->setConfigEntry('header_charset', 'utf-8'); // CFG: DEFAULT-WEB-COMMAND -$cfg->setConfigEntry('default_web_command', "home"); +$cfg->setConfigEntry('default_web_command', 'home'); // CFG: FORM-METHOD -$cfg->setConfigEntry('form_method', "post"); +$cfg->setConfigEntry('form_method', 'post'); // CFG: FORM-TARGET -$cfg->setConfigEntry('form_target', "_self"); +$cfg->setConfigEntry('form_target', '_self'); // CFG: WEB-BLOCK-HELPER -$cfg->setConfigEntry('web_block_helper', "WebBlockHelper"); +$cfg->setConfigEntry('web_block_helper', 'WebBlockHelper'); // CFG: WEB-FORM-HELPER -$cfg->setConfigEntry('web_form_helper', "WebFormHelper"); +$cfg->setConfigEntry('web_form_helper', 'WebFormHelper'); // CFG: WEB-LINK-HELPER -$cfg->setConfigEntry('web_link_helper', "WebLinkHelper"); +$cfg->setConfigEntry('web_link_helper', 'WebLinkHelper'); // [EOF] ?>