From dbc70dd90ee8d4ed0f4cd3c093ab83370cbfe913 Mon Sep 17 00:00:00 2001 From: Cameron Date: Thu, 30 May 2013 00:35:05 -0700 Subject: [PATCH] Field Ordering fix. --- e107_admin/cpage.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e107_admin/cpage.php b/e107_admin/cpage.php index f9d298897..e4678d0da 100644 --- a/e107_admin/cpage.php +++ b/e107_admin/cpage.php @@ -410,8 +410,9 @@ class page_admin_ui extends e_admin_ui protected $fields = array( 'checkboxes' => array('title'=> '', 'type' => null, 'width' =>'5%', 'forced'=> TRUE, 'thclass'=>'center', 'class'=>'center'), 'page_id' => array('title'=> LAN_ID, 'type' => 'text', 'tab' => 0, 'width'=>'5%', 'forced'=> TRUE, 'readParms'=>'link=sef&target=dialog'), - 'page_chapter' => array('title'=> 'Book/Chapter', 'tab' => 0, 'type' => 'dropdown', 'width' => '20%', 'filter' => true, 'batch'=>true, 'inline'=>true), 'page_title' => array('title'=> LAN_TITLE, 'tab' => 0, 'type' => 'text', 'inline'=>true, 'width'=>'25%'), + 'page_chapter' => array('title'=> 'Book/Chapter', 'tab' => 0, 'type' => 'dropdown', 'width' => '20%', 'filter' => true, 'batch'=>true, 'inline'=>true), + 'page_template' => array('title'=> LAN_TEMPLATE, 'tab' => 0, 'type' => 'dropdown', 'width' => 'auto','filter' => true, 'batch'=>true, 'inline'=>true, 'writeParms'=>''), 'page_author' => array('title'=> LAN_AUTHOR, 'tab' => 0, 'type' => 'user', 'data'=>'int','width' => 'auto', 'thclass' => 'left'),