diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-06-04 21:43:21 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-06-04 21:43:21 -0700 |
commit | 66c6c3df0e6d722d3c2cc8b12d87b2f3aa903444 (patch) | |
tree | 5f79fb96d83b208a1c78ab643196ea16dd04ac6b | |
parent | 67f920d55531f12dc23da9db9f4a32c02994dfdb (diff) |
Convert single quotes to double quotes.
-rw-r--r-- | modules/gallery/libraries/Theme_View.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/gallery/libraries/Theme_View.php b/modules/gallery/libraries/Theme_View.php index 5fcc2943..15baaeef 100644 --- a/modules/gallery/libraries/Theme_View.php +++ b/modules/gallery/libraries/Theme_View.php @@ -145,10 +145,10 @@ class Theme_View_Core extends View { if ($this->children_count) { $this->pagination = new Pagination(); $this->pagination->initialize( - array('query_string' => 'page', - 'total_items' => $this->children_count, - 'items_per_page' => $this->page_size, - 'style' => 'classic')); + array("query_string" => "page", + "total_items" => $this->children_count, + "items_per_page" => $this->page_size, + "style" => "classic")); return $this->pagination->render(); } } |