update notes, change show_info_header to false by default

This commit is contained in:
mohrt
2001-04-24 15:29:33 +00:00
parent 1b16c09ce8
commit 75f7c18b68
3 changed files with 7 additions and 2 deletions

View File

@@ -36,6 +36,11 @@ MINOR FIXES
A workaround for LOCK_EX on Windows systems was added, and changed a couple of
file permissions for better security on public servers.
$show_info_header is now defaulted to false instead of true. This header causes
problems when displaying content other than HTML, so now you must explicitly
set this flag to true to show the header information (or change the default in
your copy of Smarty.)
CHANGES/ENHANCEMENTS
date_format, html_select_date and html_select_time used to require a unix

View File

@@ -128,7 +128,7 @@ class Smarty
);
var $version = '1.4.0'; // Smarty version number
var $show_info_header = true; // display info header at top of page output
var $show_info_header = false; // display HTML info header at top of page output
var $compiler_class = 'Smarty_Compiler'; // the compiler class used by
// Smarty to compile templates

View File

@@ -128,7 +128,7 @@ class Smarty
);
var $version = '1.4.0'; // Smarty version number
var $show_info_header = true; // display info header at top of page output
var $show_info_header = false; // display HTML info header at top of page output
var $compiler_class = 'Smarty_Compiler'; // the compiler class used by
// Smarty to compile templates