diff options
-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(); } } |