Browse Source

Don't depend on webserver URL rewriting

Frans Bergman 5 years ago
parent
commit
f8c64dd159
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app.php

+ 1 - 1
app.php

@@ -87,7 +87,7 @@ EOT;
           $selected = "active";
 
         if ($menurow['valuetype'] == "page") {
-          $link = "/" . $menurow['value'];
+          $link = "?p=" . $menurow['value'];
         } else {
           $link = $menurow['value'];
         }