浏览代码

phpdoc fix.

tokul 20 年之前
父节点
当前提交
51faeb3419
共有 2 个文件被更改,包括 11 次插入8 次删除
  1. 2 0
      class/error.class.php
  2. 9 8
      include/errors.php

+ 2 - 0
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)

+ 9 - 8
include/errors.php

@@ -1,15 +1,16 @@
 <?php
 
 /**
-* errors.php
-*
-* Copyright (c) 2005 The SquirrelMail Project Team
-* Licensed under the GNU GPL. For full terms see the file COPYING.
-*
-* @version $Id$
-* @package squirrelmail
-*/
+ * errors.php
+ *
+ * Copyright (c) 2005 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * @version $Id$
+ * @package squirrelmail
+ */
 
+/** init error array */
 $aError = array();
 
 define('SQM_ERROR_IMAP',1);