mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 15:38:27 +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
dbeb104ed5
commit
c70ff2e069
@ -1679,7 +1679,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