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
..
Content Reduce cache time for OEmbed error 2018-07-24 11:05:09 -04:00
Core Moved CONTACT_* constants to Friendica\Model\Contact class, lesser in global namespace (#5490) 2018-07-24 22:53:46 -04:00
Database Item storage: Permissions aren't stored in the items anymore (#5495) 2018-07-25 19:14:55 -04:00
Model Item storage: Permissions aren't stored in the items anymore (#5495) 2018-07-25 19:14:55 -04:00
Module Rename DBA::is_result to DBA::isResult 2018-07-23 11:04:14 -04:00
Network Moved CONTACT_* constants to Friendica\Model\Contact class, lesser in global namespace (#5490) 2018-07-24 22:53:46 -04:00
Object Fix undefined oembed properties 2018-07-24 07:56:27 -04:00
Protocol Possible fix for #5470: (#5506) 2018-07-26 18:27:12 -04:00
Render Replace current_theme() and current_theme_url() calls 2018-04-28 18:37:25 -04:00
Util Rename DBA::is_result to DBA::isResult 2018-07-23 11:04:14 -04:00
Worker Moved CONTACT_* constants to Friendica\Model\Contact class, lesser in global namespace (#5490) 2018-07-24 22:53:46 -04:00
App.php Issue 5467: Fix worker and daemon 2018-07-24 03:42:44 +00:00
BaseModule.php added hint about naming the class and filename 2018-04-03 16:33:39 +02:00
BaseObject.php Set BaseObject::setApp in App 2018-07-16 19:38:13 -04:00