From: Greg Beaver Date: Fri, 27 Feb 2004 02:27:00 +0000 (+0000) Subject: fix #640, error in comment for getStaticProperty X-Git-Tag: RELEASE_0_2_0~137 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7c6b73ce38f2bdf259ba99bef3712d5c5f5803fc;p=php fix #640, error in comment for getStaticProperty --- 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