[Obliquid-cvs] obliquid/common/pages/core newpage.php,1.23,1.24
Status: Beta
Brought to you by:
slocati
|
From: <sl...@sc...> - 2007-03-07 09:10:33
|
Update of /cvsroot/obliquid/obliquid/common/pages/core In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9117/pages/core Modified Files: newpage.php Log Message: Removed the choice of the frame position, that now depends only on the theme position Index: newpage.php =================================================================== RCS file: /cvsroot/obliquid/obliquid/common/pages/core/newpage.php,v retrieving revision 1.23 retrieving revision 1.24 diff -b -u -d -r1.23 -r1.24 --- newpage.php 8 Apr 2004 15:25:55 -0000 1.23 +++ newpage.php 7 Mar 2007 09:10:21 -0000 1.24 @@ -94,18 +94,20 @@ $dbf =& new db_form(); $dbf->parseForm(); $pdata["NAME"]=$dbf->getTextInput("NAME", - array("class" => "textform", "maxlength" => "32", "size" => "25")); + array("class" => "textform", "maxlength" => "32", "style" => "width:200px")); + $dbf->setFormValue("TPL", "common"); + /* $options=array( array("LABEL" => "none", "VALUE" => "none"), array("LABEL" => "common", "VALUE" => "common"), array("LABEL" => "local", "VALUE" => "local") ); - $dbf->setFormValue("TPL", "common"); $pdata["TPL"]=$dbf->getArraySelect("TPL", $options, array("class" => "textform")); + */ $dbf->setFormValue("FRAME", "frame"); $pdata["FRAME"]=$dbf->getTextInput("FRAME", array("class" => "textform")); $pdata["GROUP"]=$dbf->getSelect("GROUP", $module, array("class" => "textform")); $pdata["comment"]=$dbf->getTextInput("comment", - array("class" => "textform", "maxlength" => "255", "size" => "82")); + array("class" => "textform", "maxlength" => "255", "style" => "width:400px")); $pdata["SUBMIT"]=$dbf->getHidden("action", "newpage") .$dbf->getSubmit("submit", _l("Save"), array("class" => "buttonform")); |