Fixed spelin errorr.
authorgustavf <gustavf@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 29 Jun 2000 08:17:05 +0000 (08:17 +0000)
committergustavf <gustavf@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 29 Jun 2000 08:17:05 +0000 (08:17 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@567 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/plugin.php

index c1c4cf2aa7f739966f69cd7cae19b70fc02d8a09..696cab5c74ba12cd3b8edbca1bdb6c44eb7b7513 100644 (file)
@@ -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);
 
 ?>