Browse Source

Index: If GET-Parameters are present, convert to hash

- closes #32
master
parent
commit
9da286e4ff
  1. 5
      index.php

5
index.php

@ -17,6 +17,11 @@ elseif (isset($config['categoriesDir'])) {
}
}
if (sizeof($_GET)) {
Header('Location: .#' . http_build_query($_GET));
exit(0);
}
html_export_var(array(
'config' => $config,
));

Loading…
Cancel
Save