diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-01-01 00:23:29 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-01 00:23:29 +0000 |
| commit | cd1d02375400972f2a719852d44c094ab500e8b6 (patch) | |
| tree | 611f0c01f91b8d0aa1d160f64c7cf170d90c57fb /modules/media_rss | |
| parent | 7c82691e0057188e07601c30069385c3f17cbff1 (diff) | |
Change the preamble for views in two ways:
1) drop unnecessary semicolon
2) start with <?php for extra security in the case that the server itself doesn't
have short_tags enabled (the app won't work, but we need to make sure that we're
still secure)
Diffstat (limited to 'modules/media_rss')
| -rw-r--r-- | modules/media_rss/views/feed.mrss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/media_rss/views/feed.mrss.php b/modules/media_rss/views/feed.mrss.php index 25505f0d..c4a04604 100644 --- a/modules/media_rss/views/feed.mrss.php +++ b/modules/media_rss/views/feed.mrss.php @@ -1,4 +1,4 @@ -<? defined("SYSPATH") or die("No direct script access."); ?> +<?php defined("SYSPATH") or die("No direct script access.") ?> <? echo "<?xml version=\"1.0\" ?>" ?> <rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/" xmlns:atom="http://www.w3.org/2005/Atom" |
