luckyshot / miki

Wiki system in PHP+NoDB in just one file. 10s setup + auto-installed. Full Markdown support. Super fast and lightweight (-0.01MB gzip). Multi-User support. Minimal and beautiful.
https://xaviesteve.com
28 stars 4 forks source link

Allfiles navigation menu is only shown on the homepage #8

Closed Torsten-K closed 7 years ago

Torsten-K commented 7 years ago

<ul class="allfiles"></ul> shows a list of all the files – but only on the home page. How can I make it appear on the other pages, too? The unordered list has no entries, like in the code example above.

Torsten-K commented 7 years ago

I found the solution: You have to comment out one line in index.php which tells the system to show the navigation only on the home page:

protected function listfiles() {
    // display only in starting page
    if ($_GET['p'] != $this->config['default_page'] ) {return;}

Change it to:

protected function listfiles() {
    // display only in starting page
    // if ($_GET['p'] != $this->config['default_page'] ) {return;}