This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/FrameworkBundle/DependencyInjection
Fabien Potencier d9439aba71 made the charset overridable (closes #2072)
The charset was configurable in a configuration file but it never worked:

    framework:
        charset: ISO-8859-1

Now, like for the cache and log dirs, you can configure the charset by
overriding the getCharset() method in the app kernel:

    public function getCharset()
    {
        return 'ISO-8859-1';
    }
2012-07-03 10:28:30 +02:00
..
Compiler merged 2.0 2012-05-27 12:30:27 +02:00
Configuration.php made the charset overridable (closes #2072) 2012-07-03 10:28:30 +02:00
FrameworkExtension.php made the charset overridable (closes #2072) 2012-07-03 10:28:30 +02:00