add missing param for createview
authorchriskl <chriskl>
Tue, 6 May 2003 06:16:31 +0000 (06:16 +0000)
committerchriskl <chriskl>
Tue, 6 May 2003 06:16:31 +0000 (06:16 +0000)
views.php

index 10d6648b084428bf7899d554649eec3f4f205379..9f505aec03fe6622eaf14897bfd427f559cf05f7 100644 (file)
--- 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
                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