diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-02-01 11:02:36 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-02-01 11:02:36 -0800 |
commit | e7c564133f6f50c2b14be9b0e2cad162f4531726 (patch) | |
tree | 5fe36bc6f2e8befe8274e7e7b2dd11efe56ae26c | |
parent | e1bf010d89c4ef2023f204834c468793d866483c (diff) |
Use single quotes on the <?xml tag for readability.
-rw-r--r-- | modules/rss/views/feed.mrss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/rss/views/feed.mrss.php b/modules/rss/views/feed.mrss.php index a61ee96c..cdb4f0f0 100644 --- a/modules/rss/views/feed.mrss.php +++ b/modules/rss/views/feed.mrss.php @@ -1,5 +1,5 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<? echo "<?xml version=\"1.0\" ?>" ?> +<? echo '<?xml version="1.0" ?>' ?> <rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" |