diff options
author | Andy Staudacher <andy.st@gmail.com> | 2010-02-11 14:28:32 -0800 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2010-02-11 14:28:32 -0800 |
commit | 6353a7c2decd62098ebc96951c38c9aade44fc4c (patch) | |
tree | a8196b622c4aaa50ef91a01cc135be2eed03eb21 /modules/gallery/controllers/movies.php | |
parent | cd98f85260efd90cc93db78ee1efed997d0221c2 (diff) |
Security: Fix leaking of album / photo names. Reject previous fix for ticket 1009.
Side effect: Renaming auth::required_login() to login_page().
Diffstat (limited to 'modules/gallery/controllers/movies.php')
-rw-r--r-- | modules/gallery/controllers/movies.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/gallery/controllers/movies.php b/modules/gallery/controllers/movies.php index 8041066e..78a56e81 100644 --- a/modules/gallery/controllers/movies.php +++ b/modules/gallery/controllers/movies.php @@ -22,13 +22,10 @@ class Movies_Controller extends Items_Controller { if (!is_object($movie)) { // show() must be public because we route to it in url::parse_url(), so make // sure that we're actually receiving an object - Kohana::show_404(); + throw new Kohana_404_Exception(); } - if (!access::can("view", $movie)) { - print auth::require_login(); - return; - } + access::required("view", $movie); $where = array(array("type", "!=", "album")); $position = $movie->parent()->get_position($movie, $where); |