Hey everyone, Both in my production and development environments, using symfony 1.0.8, on a normal GET request, the layout's
<?php include_http_metas(); ?> <?php include_metas(); ?> calls will output: <meta name="title" content="blah blah" /> <meta name="robots" content="noindex, nofollow" /> which is correct. However, on a POST request, they will output (again, in both environments): <meta name="title" content="blah blah"> <meta name="robots" content="noindex, nofollow"> I had a quick look at the tag() function in helper/TagHelper.php, where the 3rd parameter specifies how the tag should be closed; it defaults to false and neither include_metas() or include_http_metas() in helper/AssetHelper.php modify this parameter... Am I the only one seeing this? Alexander --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
