diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-15 02:15:10 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-15 02:15:10 +0000 |
commit | 73c52c7140e0b867d02b658be396b91396c6713e (patch) | |
tree | c87f1060aaeb4921467fee95b144dab2e17d4457 | |
parent | 2d7ab6f4dac14a3bbf6718edfaf999e6ad58cf98 (diff) |
whitespace fix.
-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 d87bd640..ef1d2eb4 100644 --- a/core/controllers/albums.php +++ b/core/controllers/albums.php @@ -40,7 +40,7 @@ class Albums_Controller extends Items_Controller { $page = $this->input->get("page", "1"); $children_count = $album->viewable()->children_count(); - $offset = ($page-1) * $page_size; + $offset = ($page - 1) * $page_size; // Make sure that the page references a valid offset if ($page < 1 || $page > max(ceil($children_count / $page_size), 1)) { |