diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-31 20:34:12 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-31 20:34:12 +0000 |
commit | 96aa486060bda042cd8d4dc5e9a667f170a418d0 (patch) | |
tree | 4085bc0614a8cf6894a37dc46721938b6ee44d29 | |
parent | a57d0d93a8c741e64ac18bbb36aad4164569f266 (diff) |
Add missing 2nd argument for Theme_View()
-rw-r--r-- | core/controllers/albums.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/controllers/albums.php b/core/controllers/albums.php index bcfdd8c2..adf59c02 100644 --- a/core/controllers/albums.php +++ b/core/controllers/albums.php @@ -27,7 +27,7 @@ class Albums_Controller extends Items_Controller { if ($album->id != 1) { access::forbidden(); } else { - print new Theme_View("login_page.html"); + print new Theme_View("login_page.html", "album"); return; } } |