1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-29 09:10:23 +02:00

Admin Custom-Pages "new page" bugfix.

This commit is contained in:
CaMer0n
2012-07-22 11:14:29 +00:00
parent c99343955e
commit 384b123475
3 changed files with 14 additions and 6 deletions

View File

@@ -109,7 +109,6 @@ else
*/
class page_admin extends e_admin_dispatcher
{
@@ -223,6 +222,13 @@ class page_admin_ui extends e_admin_ui
function init()
{
if(varset($_GET['mode'])=='dialog' && varset($_GET['action'])=='dialog') // New Page bbcode in tabs.
{
$this->dialogPage();
}
if($this->getQuery('iframe') == 1)
{
@@ -284,10 +290,11 @@ class page_admin_ui extends e_admin_ui
function dialogPage() // FIXME - remove table-rendering when using 'return' ??
{
$count = varset($_GET['count']);
$frm = e107::getForm();
$text .= "<fieldset id='e-tab-empty'>\n";
$text .= "<div>Title: ".$frm->text('page_subtitle[]', '', 250)."</div>\n";
$text .= $frm->bbarea('data[]', '', 'page','help','large');
$text .= $frm->bbarea('data_'.intval($count), '', 'page','help','large');
$text .= "</fieldset>";
echo $text;
exit;
@@ -720,7 +727,7 @@ class page_admin_ui extends e_admin_ui
// return;
}
// echo $newData;
$page_text = $tp->toDB($newData);