Fixed incorrect constant definition - constant had the wrong name, leading to many warnings about the constant being undefined.

This commit is contained in:
paul 2006-09-01 08:21:58 +00:00
parent ea21b59494
commit 11db21cc45
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<?php
ini_set('memory_limit', '64M');
ini_set('memory_limit', '64M');
## Warning/Error level
define('UI_DEBUG', FALSE);
@ -25,7 +25,7 @@ define('UI_HANDLER', 'ui_handler.php');
define('UI_BROWSER', 'ui_browser.php');
## HTML Form stuff
define('UI_FORM_STANDARD_METHOD', 'POST');
define('UI_STANDARD_FORM_METHOD', 'POST');
define('UI_INPUT_STANDARD_SIZE', 50);
define('UI_INPUT_STANDARD_MAXLENGTH', 255);
define('UI_TEXTAREA_STANDART_ROWS', 5);
@ -168,4 +168,4 @@ require_once 'HTML/QuickForm.php';
#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');
PEAR::setErrorHandling(PEAR_ERROR_RETURN);
#PEAR::setErrorHandling(PEAR_ERROR_PRINT);
?>
?>