Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kolber committed Apr 5, 2013
1 parent d656b46 commit 9a681c9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/page-data.inc.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ static function get_parent($file_path, $url) {
# drop the last folder from the file path # drop the last folder from the file path
array_pop($split_path); array_pop($split_path);
$parent_path = array(implode('/', $split_path)); $parent_path = array(implode('/', $split_path));

return $parent_path[0] == Config::$content_folder ? array() : $parent_path; return $parent_path[0] == Config::$content_folder ? array() : $parent_path;
} }


Expand Down Expand Up @@ -136,7 +135,7 @@ static function create_vars($page) {
# page.is_first # page.is_first
$page->is_first = $page->data['index'] == 1; $page->is_first = $page->data['index'] == 1;


# page.cache_page # page.cache_page
$page->bypass_cache = isset($page->data['bypass_cache']) && $page->data['bypass_cache'] !== 'false' ? $page->data['bypass_cache'] : false; $page->bypass_cache = isset($page->data['bypass_cache']) && $page->data['bypass_cache'] !== 'false' ? $page->data['bypass_cache'] : false;


} }
Expand Down

0 comments on commit 9a681c9

Please sign in to comment.