diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-31 06:44:38 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-31 06:44:38 +0000 |
commit | b7f451635a043a98d75ccba3e69597e8ea11226f (patch) | |
tree | 5b8aab0a161ef92865e2fbd6b53b10c6c34ba9f0 /core/controllers | |
parent | 517ddf53883214f225ad76997fd033faae276a42 (diff) |
change single to double quotes.
Diffstat (limited to 'core/controllers')
-rw-r--r-- | core/controllers/photos.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/controllers/photos.php b/core/controllers/photos.php index 13185283..bb2a8510 100644 --- a/core/controllers/photos.php +++ b/core/controllers/photos.php @@ -26,10 +26,10 @@ class Photos_Controller extends Items_Controller { access::required("view", $photo); $template = new Theme_View("page.html", "photo"); - $template->set_global('item', $photo); - $template->set_global('children', array()); - $template->set_global('children_count', $photo->children_count()); - $template->set_global('parents', $photo->parents()); + $template->set_global("item", $photo); + $template->set_global("children", array()); + $template->set_global("children_count", $photo->children_count()); + $template->set_global("parents", $photo->parents()); $template->content = new View("photo.html"); |