diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-08-26 08:06:52 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-08-26 08:06:52 +0200 |
commit | 3d0003dbdf7280ccf05978278819c81634da239e (patch) | |
tree | 7c7f11e4b44bf56ff21f0ceaa0151b137cdb67da | |
parent | 5fd90b9a6b5279047b80b9b404b3d91052d61298 (diff) |
Fixed variable name (changed unintentionally in last backporting commit)
-rw-r--r-- | config/main.inc.php.dist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index ff6a7b470..0b81529ff 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -437,7 +437,7 @@ $rcmail_config['date_format'] = 'Y-m-d'; // give this choice of date formats to the user to select from // Note: do not use ambiguous formats like m/d/Y -$config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'); +$rcmail_config['date_formats'] = array('Y-m-d', 'Y/m/d', 'Y.m.d', 'd-m-Y', 'd/m/Y', 'd.m.Y', 'j.n.Y'); // use this format for time display (date or strftime format) $rcmail_config['time_format'] = 'H:i'; |