In /host/page of the admin site, there is a little problem when you try to
modify a page which style is not inherited from the parent page, it does not
keep the style.

Here is the correction, edit the /host/page page from the admin site and
replace the first few lines by:


<? if ($page || $action == 'create') {
     if ($action == 'modify') {
        $up          = $page->up;
        $name        = $page->name;
        $title       = $page->title;
        $content     = $page->content;
        $author      = $page->author;
        $active      = $page->active;
        $auth        = $page->auth;
        $style       = $page->style;             // bug correction
     } elseif ($action == 'create') {
        $up          = $page->id;
        $author      = $midgard->user;
     } ?>

[EMAIL PROTECTED]


--
This is The Midgard Project's mailing list. For more information,
please visit the project's web site at http://www.midgard-project.org

To unsubscribe the list, send an empty email message to address
[EMAIL PROTECTED]

Reply via email to