Skip to content

Commit

Permalink
Minor fixes for v2.1, and updated metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
dignajar committed Dec 27, 2017
1 parent c606596 commit e683ce8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"author": "Bludit",
"email": "",
"website": "https://themes.bludit.com",
"version": "1.0",
"releaseDate": "2017-10-08",
"version": "1.1",
"releaseDate": "2017-12-27",
"license": "MIT",
"compatible": "2.0",
"compatible": "2.0, 2.1",
"notes": ""
}
3 changes: 1 addition & 2 deletions php/sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
<ul class="static-pages">
<?php
$staticPages = $dbPages->getStaticDB();
$staticPagesKeyList = array_keys($staticPages);
foreach ($staticPagesKeyList as $pageKey) {
foreach ($staticPages as $pageKey) {
$staticPage = buildPage($pageKey);
echo '<li>';
echo '<a href="'.$staticPage->permalink().'">';
Expand Down

0 comments on commit e683ce8

Please sign in to comment.