From e595ef9becc0cf6c43515344cc1f84262a495b6d Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 30 Apr 2006 02:07:29 +0000 Subject: [PATCH] Add TYPE_NONE as an alias for TYPE_NOCLEAN --- dev/changes.txt | 10 +++++++--- kernel.php | 5 +++++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/dev/changes.txt b/dev/changes.txt index 55b6d14..2b2d9ba 100644 --- a/dev/changes.txt +++ b/dev/changes.txt @@ -1,6 +1,9 @@ -CHANGELOG FOR 2.0 -################################################################### +2.0.1 +=============== +- Add TYPE_NONE as an alias for TYPE_NOCLEAN +2.0.0 +=============== - Using GNU GPL - Cleaning up phpDoc variable type declarations - Removed iff() [kernel.php] @@ -37,4 +40,5 @@ CHANGELOG FOR 2.0 - Added UTF-8 support to the XML parser [xml.php] - Added a new graphing module to create pie charts [graph_pie.php] - Added ISSO->input_escape() to run ISSO->escape() directly on ISSO->in[] data [kernel.php] -- Fixed a long-standing bug of _error_handler() not working properly always [kernel.php] \ No newline at end of file +- Fixed a long-standing bug of _error_handler() not working properly always [kernel.php] + diff --git a/kernel.php b/kernel.php index ebdf227..7202336 100644 --- a/kernel.php +++ b/kernel.php @@ -122,6 +122,11 @@ define('TYPE_STRUN', 32); * No cleaning - here for use in API */ define('TYPE_NOCLEAN', 64); + +/** +* Duplicate of TYPE_NOCLEAN, but shorter +*/ +define('TYPE_NONE', TYPE_NOCLEAN); /**#@-*/ /** -- 2.22.5