mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-03 20:10:19 +01:00
fixed a strange PHP5.3 problem, it seems call_user_func_array fails returning NULL for a static method with a var parameter
This commit is contained in:
parent
003d1c1c94
commit
71c52d4e43
@ -1575,7 +1575,7 @@ class sqlfs_stream_wrapper implements iface_stream_wrapper
|
|||||||
* @param array $props array or array with values for keys 'name', 'ns', 'val' (null to delete the prop)
|
* @param array $props array or array with values for keys 'name', 'ns', 'val' (null to delete the prop)
|
||||||
* @return boolean true if props are updated, false otherwise (eg. ressource not found)
|
* @return boolean true if props are updated, false otherwise (eg. ressource not found)
|
||||||
*/
|
*/
|
||||||
static function proppatch($path,array &$props)
|
static function proppatch($path,array $props)
|
||||||
{
|
{
|
||||||
if (self::LOG_LEVEL > 1) error_log(__METHOD__."(".array2string($path).','.array2string($props));
|
if (self::LOG_LEVEL > 1) error_log(__METHOD__."(".array2string($path).','.array2string($props));
|
||||||
if (!is_numeric($path))
|
if (!is_numeric($path))
|
||||||
|
Loading…
Reference in New Issue
Block a user