Files
friendica/src
Roland Häder 1e20fd84f7 Possible fix for #5470: (#5506)
- $data is not an object like stdClass but an array
- newer PHP versions doesn't allow cross-access like following:

  $object['foo'] = 123;
  $array->foo = 123;

- added type-hints for private methods for above cases
- used `if (empty($foo)) instead of just `if ($foo)` preventing some nasty
  E_NOTICE
- added some empty lines for better readability
2018-07-26 18:27:12 -04:00
..
2018-07-24 07:56:27 -04:00
2018-07-26 18:27:12 -04:00
2018-07-24 03:42:44 +00:00
2018-07-16 19:38:13 -04:00