mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-03 09:54:27 +02:00
update notes, change show_info_header to false by default
This commit is contained in:
@@ -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
|
||||
|
@@ -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
|
||||
|
@@ -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
|
||||
|
Reference in New Issue
Block a user