Skip to content
Snippets Groups Projects
Commit c25a7c81 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

make sure $conf['start'] is a valid pagename #567

darcs-hash:20050930160928-7ad00-d3b2e2d7447eb93b6a39262221b8dbb131c698c9.gz
parent e0e83d87
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ function getID($param='id'){
$id = urldecode($id);
$id = cleanID($id);
}
if(empty($id) && $param=='id') $id = $conf['start'];
if(empty($id) && $param=='id') $id = cleanID($conf['start']);
return $id;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment