Fixed dumb bug that I just committed...
authorthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 2 Dec 2001 09:37:39 +0000 (09:37 +0000)
committerthomppj <thomppj@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 2 Dec 2001 09:37:39 +0000 (09:37 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1826 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/constants.php
functions/plugin.php

index 8605078d5fe15e64f774685366d6f740e1c8ce63..69e8ae7c17863420eb9ff29a60e78718e8ac580a 100644 (file)
@@ -29,7 +29,7 @@
 /*** Thank you for your help making the SM code more readable. ***/
 /*****************************************************************/
 
-require_once( '../functions/plugin.php' );      // Required for the hook
+require_once('../functions/plugin.php');      // Required for the hook
 
 /**************************************************************/
 /* Set values for constants used by Squirrelmail preferences. */
index df8d37098aa6a996703c735c0e99fe5dc9386e95..fdc7020dee4ce3785994d67ddd6384b63a659142 100644 (file)
@@ -17,7 +17,7 @@
 /*** THIS FILE NEEDS TO HAVE ITS FORMATTING FIXED!!!           ***/
 /*** PLEASE DO SO AND REMOVE THIS COMMENT SECTION.             ***/
 /***    + Base level indent should begin at left margin, as    ***/
-/***      the $squirrelmail_plugin_hooks stuff below.          ***/
+/***      the first line of the function definition below.     ***/
 /***    + All identation should consist of four space blocks   ***/
 /***    + Tab characters are evil.                             ***/
 /***    + all comments should use "slash-star ... star-slash"  ***/
@@ -30,7 +30,7 @@
 /*****************************************************************/
 
 global $squirrelmail_plugin_hooks;
-squirrelmail_plugin_hooks = array();
+$squirrelmail_plugin_hooks = array();
 
     // This function adds a plugin
     function use_plugin ($name) {