Skip to content
Snippets Groups Projects
Commit 46612e42 authored by alangrafu's avatar alangrafu
Browse files

Users can choose what string to concat URI and extension

parent c0943f9c
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ QUERY;
$page = $localUri.".".$extension;
foreach($f as $v){
if($contentType == $v){
$returnPage = $localUri.".".$extension;
$returnPage = $localUri.$conf['extension_connector'].$extension;
}
if($inserts != ""){
$inserts .= "UNION ";
......
......@@ -43,5 +43,5 @@ $conf['debug'] = false;
include_once('settings.inc.php');
$conf['view']['standard']['baseUrl'] = $conf['basedir'];
$conf['extension_connector'] = '.';
?>
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