From 57311df700944859b660cc93264bdc01468e4b08 Mon Sep 17 00:00:00 2001 From: tokul Date: Sat, 6 Aug 2005 06:16:39 +0000 Subject: [PATCH] phpdoc fix. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9919 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/error.class.php | 2 ++ include/errors.php | 17 +++++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/class/error.class.php b/class/error.class.php index 49baa571..acd1abdc 100644 --- a/class/error.class.php +++ b/class/error.class.php @@ -11,10 +11,12 @@ * @package squirrelmail */ +/** Used defines */ define('SQM_NOTICE',0); define('SQM_WARNING',1); define('SQM_ERROR',2); define('SQM_STRICT',3); + // php5 E_STRICT constant (compatibility with php4) if (! defined('E_STRICT')) define('E_STRICT',2048); // Set docref_root (fixes URLs that link to php manual) diff --git a/include/errors.php b/include/errors.php index 476e8ac3..31623ffc 100644 --- a/include/errors.php +++ b/include/errors.php @@ -1,15 +1,16 @@