diff options
| -rw-r--r-- | pear/PEAR.php | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR.php b/pear/PEAR.php index 87e988c27c..17b4df51f5 100644 --- a/pear/PEAR.php +++ b/pear/PEAR.php @@ -193,7 +193,7 @@ class PEAR      /**      * If you have a class that's mostly/entirely static, and you need static      * properties, you can use this method to simulate them. Eg. in your method(s) -    * do this: $myVar = &PEAR::getStaticProperty('myVar'); +    * do this: $myVar = &PEAR::getStaticProperty('myclass', 'myVar');      * You MUST use a reference, or they will not persist!      *      * @access public  | 
