1
1
Fork 0

OStatus conversations: Fixed a bug when a message hadn't got an id.

vier: Some more changes to make the side menu static.
In the index.php I did a small change to make friendica compatible with the android client for diaspora.
This commit is contained in:
Michael Vogel 2013-03-06 23:23:04 +01:00
commit c40c61c106
3 changed files with 25 additions and 2 deletions

View file

@ -183,6 +183,10 @@ if(strlen($a->module)) {
*
*/
// Compatibility with the Android Diaspora client
if ($a->module == "stream")
$a->module = "network";
if(is_array($a->plugins) && in_array($a->module,$a->plugins) && file_exists("addon/{$a->module}/{$a->module}.php")) {
include_once("addon/{$a->module}/{$a->module}.php");
if(function_exists($a->module . '_module'))