blob: 561aae97cf57463c444d6662184742a001dd7629 (
plain)
1
2
3
4
5
6
7
8
|
<?php
/**
* This will hold the required keyword functions to display frontpage content
**/
function parse_frontpage($frontContents){
echo htmlspecialchars_decode($frontContents, ENT_NOQUOTES);
}
|