From 23924170cc1db85fecf21e0bfebf4d7b4ac42c25 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 23 Jul 2005 09:05:34 +0000 Subject: r8720: split form object out to separate include file, and make it a real object, with a display() method (This used to be commit c45c4e335ed5da1e2e43ffcb9e8d6c32678faa3c) --- swat/esptest/exception.esp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'swat/esptest/exception.esp') diff --git a/swat/esptest/exception.esp b/swat/esptest/exception.esp index dcc0fda093..f32aaeb610 100644 --- a/swat/esptest/exception.esp +++ b/swat/esptest/exception.esp @@ -1,4 +1,6 @@ -<% page_header("columns", "ESP Exception test", "/esptest/menu.js"); %> +<% page_header("columns", "ESP Exception test", "/esptest/menu.js"); + include("/scripting/forms.js"); +%>

Samba4 exception test

@@ -8,7 +10,7 @@ var f = FormObj("ExceptionTest", 0, 2); f.submit[0] = "Generate Exception"; f.submit[1] = "No Exception"; -display_form(f); +f.display(); if (request['REQUEST_METHOD'] == "POST") { function TestFunction(arg1, arg2) { -- cgit