浏览代码

Fixed spelin errorr.

gustavf 25 年之前
父节点
当前提交
21f4f73ac2
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      functions/plugin.php

+ 4 - 4
functions/plugin.php

@@ -7,7 +7,7 @@
  **
  ** Plugins will eventually be a way to provide added functionality
  ** without having to patch the SquirrelMail source code. Have some
- ** patients, though, as the these funtions might change in the near
+ ** patience, though, as the these funtions might change in the near
  ** future.
  **
  ** Documentation on how to write plugins might show up some time.
@@ -39,8 +39,8 @@
    }
 
    // On startup, register all plugins configured for use
-  if (is_array($plugins))
-     while (list ($id, $name) = each ($plugins))
-        use_plugin($name);
+   if (is_array($plugins))
+      while (list ($id, $name) = each ($plugins))
+         use_plugin($name);
 
 ?>