From dbccb8e8012db1f0d12f65aaa9f3959b7c8d0a63 Mon Sep 17 00:00:00 2001 From: chriskl Date: Tue, 6 May 2003 06:16:31 +0000 Subject: [PATCH] add missing param for createview --- views.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views.php b/views.php index 10d6648b..9f505aec 100644 --- a/views.php +++ b/views.php @@ -3,7 +3,7 @@ /** * Manage views in a database * - * $Id: views.php,v 1.10 2003/04/30 07:42:58 chriskl Exp $ + * $Id: views.php,v 1.11 2003/05/06 06:16:31 chriskl Exp $ */ // Include application functions @@ -242,7 +242,7 @@ if ($_POST['formView'] == '') doCreate($lang['strviewneedsname']); elseif ($_POST['formDefinition'] == '') doCreate($lang['strviewneedsdef']); else { - $status = $localData->createView($_POST['formView'], $_POST['formDefinition']); + $status = $localData->createView($_POST['formView'], $_POST['formDefinition'], false); if ($status == 0) doDefault($lang['strviewcreated']); else -- 2.39.5