Fix typos in comments

This commit is contained in:
Fedor A. Fetisov 2016-12-23 15:33:49 +03:00
parent c70bdfcd90
commit ffcdb223cc

View File

@ -41,13 +41,13 @@ function load_system_configs()
} }
// Mailer configs are not necessary and can be omitted but the section // Mailer configs are not necessary and can be omitted but the section
// must exist anyway. Empty statement is used to make sure null, false // should exists anyway. Empty statement is used to make sure null, false
// and "" will be converted to an empty array. // and "" will be converted to an empty array.
if (empty($configs['mailer'])) { if (empty($configs['mailer'])) {
$configs['mailer'] = array(); $configs['mailer'] = array();
} }
// Cache section must extst too. The logic behind "empty" statement is // Cache section should exists too. The logic behind "empty" statement is
// the same as above. // the same as above.
if (empty($configs['cache'])) { if (empty($configs['cache'])) {
$configs['cache'] = array(); $configs['cache'] = array();