Example #1
0
function loadhistorypage()
{
    if (!isset($_REQUEST['strPage'])) {
        return setError('Internal error in loadhistorypage');
    }
    // recup content html
    $oPpage = new PPage($_REQUEST['strPage']);
    $fckContent = $oPpage->getEditorFileContent();
    echo $fckContent;
    return true;
}