<?php

    
    # Find path for posts and pages
    # created in version 2.2

    
    include_once 'log.php';

    
    # pages created in version 2.2 and above have a $incp set.

    if (isset($incp))
        $rot = $incp;
    else
        $rot = is_dir('monofiles') ? '' : '../../';
    
    
    
    # v2.2 and above
    #$rot = isset($incp) ? $incp : '../../';
    

    # href link to home dir
    $lot = $rot == '' ? './' : $rot;
    
    
    # cmsetup function also updated in v2.2 to support path
    $cms = cmsetup($rot);
    
    
    
    include $rot.'pagep.php'

    
?>