$f->verify_csrf = false; if ($f->submit()) { $wp->id = $_POST['id']; $wp->title = $_POST['title']; $wp->menu_title = $_POST['menu_title']; $wp->window_title = $_POST['window_title']; $wp->access = $_POST['access']; $wp->layout = $_POST['layout']; $wp->description = $_POST['description']; $wp->keywords = $_POST['keywords']; $wp->body = $_POST['body']; $wp->put(); if (!$wp->error) { Versions::add($wp); $memcache->delete('_admin_page_' . $_GET['page']); $this->add_notification(i18n_get('Page saved.')); $_POST['page'] = $_GET['page']; $lock->remove(); $this->hook('admin/edit', $_POST); $this->redirect('/' . $_POST['id']); } $page->title = i18n_get('An Error Occurred'); echo i18n_get('Error Message') . ': ' . $wp->error; } else { $wp->layouts = admin_get_layouts(); $wp->failed = $f->failed; $wp = $f->merge_values($wp); $page->title = i18n_get('Edit Page') . ': ' . $wp->title; $page->head = $tpl->render('admin/edit/head', $wp) . $tpl->render('admin/wysiwyg'); echo $tpl->render('admin/edit', $wp); }