This commit is contained in:
zotlabs 2018-09-06 17:00:42 -07:00
parent 44ca674937
commit 3ff96239f6
3 changed files with 5 additions and 4 deletions

View file

@ -1063,9 +1063,9 @@ class Activity {
'xchan_name_date' => datetime_convert(),
'xchan_network' => 'activitypub',
'xchan_photo_date' => datetime_convert('UTC','UTC','1968-01-01'),
'xchan_photo_l' => z_rooot() . '/' . get_default_profile_photo(),
'xchan_photo_m' => z_rooot() . '/' . get_default_profile_photo(80),
'xchan_photo_s' => z_rooot() . '/' . get_default_profile_photo(48),
'xchan_photo_l' => z_root() . '/' . get_default_profile_photo(),
'xchan_photo_m' => z_root() . '/' . get_default_profile_photo(80),
'xchan_photo_s' => z_root() . '/' . get_default_profile_photo(48),
'xchan_photo_mimetype' => 'image/png',
]

View file

@ -407,6 +407,7 @@ define ( 'TERM_BOOKMARK', 8 );
define ( 'TERM_HIERARCHY', 9 );
define ( 'TERM_COMMUNITYTAG', 10 );
define ( 'TERM_FORUM', 11 );
define ( 'TERM_EMOJI', 12 );
define ( 'TERM_OBJ_POST', 1 );
define ( 'TERM_OBJ_PHOTO', 2 );

View file

@ -6,7 +6,7 @@
use Zotlabs\Lib\MarkdownSoap;
use Zotlabs\Lib\Group;
use Zotlabs\Lib\Libzot;
use App;
use Michelf\MarkdownExtra;
use Ramsey\Uuid\Uuid;