[phplib-dev] cvs commit
by max other posts by this author
May 30 2001 10:51PM messages near this date
[phplib-dev] cvs commit
|
[phplib-dev] cvs commit
From: max
Date: Wed May 30 16:40:15 2001
Modified files:
php-lib/php/user4.inc
Log message:
oops again
Index: php-lib/php/user4.inc
diff -u php-lib/php/user4.inc:1.5 php-lib/php/user4.inc:1.6
--- php-lib/php/user4.inc:1.5 Wed May 30 16:33:13 2001
+++ php-lib/php/user4.inc Wed May 30 16:39:45 2001
@@ -4,7 +4,7 @@
*
* @copyright 1998,1999 NetUSE GmbH Boris Erdmann, Kristian Koehntopp
* 2001, Maxim Derkachev <kot@[...].ru>
-* @version $Id: user4.inc,v 1.5 2001/05/30 14:33:13 max Exp $
+* @version $Id: user4.inc,v 1.6 2001/05/30 14:39:45 max Exp $
* @package PHPLib
* @access public
*/
@@ -90,7 +90,7 @@
*/
function register ($things) {
- $things = preg_split('/\s*,\s*/', trim($var_names) );
+ $things = preg_split('/\s*,\s*/', trim($things) );
foreach ($things as $thing) {
if (!isset($GLOBALS[$thing]))
@@ -119,7 +119,7 @@
*/
function unregister($things) {
- $things = preg_split('/\s*,\s*/', trim($var_names) );
+ $things = preg_split('/\s*,\s*/', trim($things) );
foreach ($things as $thing) {
if (!isset ($GLOBALS[$this-> vars_array][$thing]))
---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-dev-unsubscribe@[...].de
For additional commands, e-mail: phplib-dev-help@lists.netuse.de
|