From: <var...@us...> - 2010-02-09 17:30:21
|
Revision: 7299 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7299&view=rev Author: vargenau Date: 2010-02-09 17:30:15 +0000 (Tue, 09 Feb 2010) Log Message: ----------- Make plugin SystemInfo work for PHP 5.3 Modified Paths: -------------- trunk/lib/plugin/SystemInfo.php Modified: trunk/lib/plugin/SystemInfo.php =================================================================== --- trunk/lib/plugin/SystemInfo.php 2010-02-08 15:59:24 UTC (rev 7298) +++ trunk/lib/plugin/SystemInfo.php 2010-02-09 17:30:15 UTC (rev 7299) @@ -456,7 +456,7 @@ if (!empty($availableargs[$arg])) return $availableargs[$arg](); elseif (method_exists($this, $arg)) // any defined SystemInfo->method() - return call_user_func_array(array(&$this, $arg), ''); + return call_user_func_array(array(&$this, $arg), array()); elseif (defined($arg) && // any defined constant !in_array($arg,array('ADMIN_PASSWD','DATABASE_DSN','DBAUTH_AUTH_DSN'))) return constant($arg); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |