X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/4a53554259c43793bb7035489da0e6bd79993b6e..2b10abd17f88ba23817bf28840a0f44da74bf362:/lib/functions.php diff --git a/lib/functions.php b/lib/functions.php index a89d8b8..6c9c832 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -1373,11 +1373,13 @@ jirafeau_replace_markers ($content, $htmllinebreaks = false) { $patterns = array( '/###ORGANISATION###/', - '/###CONTACTPERSON###/' + '/###CONTACTPERSON###/', + '/###WEBROOT###/' ); $replacements = array( - '[ORGANISATION PROVIDING THIS WEBSITE]', - 'contact@[THIS WEBSITE]' + $GLOBALS['cfg']['organisation'], + $GLOBALS['cfg']['contactperson'], + $GLOBALS['cfg']['web_root'] ); $content = preg_replace($patterns, $replacements, $content);