Convert single quotes to double quotes.

This commit is contained in:
Bharat Mediratta
2009-06-04 21:43:21 -07:00
parent 67f920d555
commit 66c6c3df0e
+4 -4
View File
@@ -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();
}
}